Google Scholar 作者 API
prod-global
GET
/api/v1/google/scholar/author
API 健康狀態
健康 可用 受限 多數不可用 無資料
正在載入健康狀態...
取得 Google 學術作者資料,包括出版物、引用指標和研究興趣,用於研究人員分析與學術檔案建立。
標籤: Google Scholar
請求參數
| 名稱 | 必填 | 類型 | 預設值 | 說明 |
|---|---|---|---|---|
author_id | 是 | string | 研究人員/作者的唯一 Google 學術 ID(例如 'LSs6DR8AAAAJ')。 | |
results | 否 | integer | 20 | 每頁回傳的結果數量。 |
language | 否 | string | en | 使用兩個字母的代碼設定結果語言(例如 'en' 表示英文,'fr' 表示法文)。請參閱 Google 語言。 |
view_op | 否 | string | 作者檔案的特定檢視操作。 可用值: - LIST_COLLEAGUES:列出共同作者。舊版值 list_colleagues 也可接受。- VIEW_CITATION:檢視引用詳細資料。舊版值 view_citation 也可接受。 | |
sort | 否 | string | 作者出版物的排序條件。 可用值: - TITLE:按標題排序。舊版值 title 也可接受。- PUBLICATION_DATE:按出版日期排序。舊版值 pubdate 也可接受。 | |
citation_id | 否 | string | 要檢視詳細資料的引用 ID(當 'view_op' 為 'view_citation' 時為必填)。 |
複製請求
bash
curl -X GET "https://api.justserpapi.com/api/v1/google/scholar/author?author_id=YOUR_VALUE" \
-H "X-API-Key: YOUR_API_KEY"js
const res = await fetch("https://api.justserpapi.com/api/v1/google/scholar/author?author_id=YOUR_VALUE", {
headers: { "X-API-Key": "YOUR_API_KEY" }
});
const data = await res.json();
console.log(data);python
import requests
url = "https://api.justserpapi.com/api/v1/google/scholar/author"
headers = { "X-API-Key": "YOUR_API_KEY" }
params = {
"author_id": "YOUR_VALUE"
}
response = requests.get(url, headers=headers, params=params)
print(response.json())php
<?php
$url = "https://api.justserpapi.com/api/v1/google/scholar/author?author_id=YOUR_VALUE";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"X-API-Key: YOUR_API_KEY"
]);
$response = curl_exec($ch);
curl_close($ch);
echo $response;go
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
client := &http.Client{}
req, _ := http.NewRequest("GET", "https://api.justserpapi.com/api/v1/google/scholar/author?author_id=YOUR_VALUE", nil)
req.Header.Set("X-API-Key", "YOUR_API_KEY")
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}回應
正在載入最新回應範例...
