跳转到主要内容
GET
/
companies
/
news
/
languages
列出新闻语言
curl --request GET \
  --url https://api.pubrio.com/companies/news/languages \
  --header 'pubrio-api-key: <api-key>'
import requests

url = "https://api.pubrio.com/companies/news/languages"

headers = {"pubrio-api-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'pubrio-api-key': '<api-key>'}};

fetch('https://api.pubrio.com/companies/news/languages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.pubrio.com/companies/news/languages",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"pubrio-api-key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.pubrio.com/companies/news/languages"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("pubrio-api-key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.pubrio.com/companies/news/languages")
.header("pubrio-api-key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.pubrio.com/companies/news/languages")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["pubrio-api-key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "data": [
    {
      "news_language_id": "77bb2cd2-fbea-4cd1-b860-78786c6b2343",
      "slug": "ar",
      "locale_code": "ar",
      "name": "Arabic",
      "name_en": "Arabic"
    },
    "..."
  ]
}
{
"code": 40001,
"message": "错误及代码会根据不同场景有所不同,详情请参阅文档。",
"details": {}
}
{
"error": "请求频率超出限制。请稍后再试。"
}
{
"error": "服务器在处理请求时遇到了未预料的异常。"
}

授权

pubrio-api-key
string
header
必填

一个唯一的 API 令牌,用于标识您通过 API 执行的操作以及相应的权限和操作。您可以在 设置 部分创建该令牌。

响应

包含新闻语言详情的成功响应。

data
object[] | null

响应信息取决于具体接口。