Twitter ユーザー プロファイル スクレイパー API

APIエンドポイント仕様

  • エンドポイント パス: /api/1/twitter-user-profile
  • データの種類: JSON と 10/分
  • 情報元: ツイッター
  • リクエスト制限: 500リクエスト/月
  • スクリプトと統合: cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript と統合するコード
Twitter ユーザー プロファイル スクレイパー API エンドポイントの基本情報

APIエンドポイントパス

必須

Twitter ユーザー プロファイル スクレーパー

api/1/twitter-user-profile


Call Method

Required

POST

返されるデータの種類

JSON

Twitterのユーザープロフィールに構造化されたJSONデータを出力する


利用可能な API 引数とパラメータ

token

必須

BUYFROMLO API トークンを購入します. サブスクリプション API は /api/1/twitter-user-profile で利用でき, 次からアクセスできます. - /app/1/twitter-user-profile のサイト APP

userproifleID

必須

Twitter ユーザーのプロフィール ID または URL を入力してください



Twitter ユーザー プロファイル スクレーパー

api/1/twitter-user-profile


コードの統合と対応

Python コードサンプル


import requests

apiendpoint = "https://api.buyfromlo.com/api/1/twitter-user-profile"

## Required Arguments & Parameters ##
token = "your buyfromlo token"
userproifleID = "Enter a commodity name referring to the options"

## Call the api ##
response = requests.get(apiendpoint + "?token=" + token + "&userproifleID=" + userproifleID)
print(response.status_code)
print(response.json())
                        

JSON 応答サンプル


{
    "Post Date":"",
    "Post Content":"",
    "api_module": ""
}