私の質問は何ですかPinterestアクセストークンは有効期限ですか?Pinterest APIアクセストークンの有効期限が切れる
私はトークンPinterestの公式ドキュメント、次のアクセス権を取得しています:
https://developers.pinterest.com/docs/api/overview/#getting-your-authorization-code
https://api.pinterest.com/oauth/?
response_type=code&
redirect_uri=https://mywebsite.com/connect/pinterest/&
client_id=12345&
scope=read_public,write_public&
state=768uyFys
とアクセストークンを取得するための::認証コードを取得するための
を
https://developers.pinterest.com/docs/api/overview/#getting-your-access-token
https://api.pinterest.com/v1/oauth/token?
grant_type=authorization_code&
client_id=12345&
client_secret=6789abcd&
code=xyz1010
実際の応答は次のとおりです。私はトークンに関するPinterestのドキュメントで見つけることができます
{
"access_token": "AfISUq75NELGEECEurmvEcIwlQZDFFBOnAdsa",
"token_type": "bearer",
"scope": [
"read_public",
"write_public",
"read_private",
"write_private",
"read_write_all"
]
}
何も期限切れになりませんし、有効期限が応答で返されません。私は何かを見つけることができません https://api.pinterest.com/v3/oauth/code_exchange/
と反応して、彼はPinterestのドキュメントでexpires_at
フィールド
を取得している:私はこの男はAPI v3のエンドポイントを使用していることがわかりますこの質問Pinterest returns expired token
あたりとして
API versinos V2またはV3について、
すべてのドキュメントPinterest APIはAPI V1についてです。
これに関するお手伝いはありますか?
私はドキュメントでこれを逃したのか分かりません。 Yeap、Twitterトークンも期限切れではありません – carpics