「Instagram/api」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→検索api) |
|||
行25: | 行25: | ||
==検索api== | ==検索api== | ||
− | + | ttps://api.instagram.com/v1/users/search?q=あいうえお&access_token=[access_token] | |
権限がないので以下のように表示される(2015/11/17からっぽい) | 権限がないので以下のように表示される(2015/11/17からっぽい) | ||
{"meta":{"error_type":"OAuthPermissionsException","code":400,"error_message":"This request requires scope=public_content, but this access token is not authorized with this scope. The user must re-authorize your application with scope=public_content to be granted this permissions."}} | {"meta":{"error_type":"OAuthPermissionsException","code":400,"error_message":"This request requires scope=public_content, but this access token is not authorized with this scope. The user must re-authorize your application with scope=public_content to be granted this permissions."}} |
2016年1月18日 (月) 05:05時点における版
API申請は2015/11/17以降厳しくなっているらしい
http://www.bricoleur.co.jp/blog/archives/2576
ハッシュ検索も一般ユーザの画像は表示されないようにされているっぽい http://detail.chiebukuro.yahoo.co.jp/qa/question_detail/q14153122184
developer登録
http://instagram.com/developer/clients/manage/
- regist new clinetsからアプリケーション作成
- Client ID と Client Secret を取得できる
- "This app is in sandbox mode and can only be authorized by sandbox users."となるがアプリIDが作成される
アクセストークンを取得
https://api.instagram.com/oauth/authorize/?client_id=[client_id]&redirect_uri=[redirect_uri]&response_type=token
認証するとリダイレクトURL先のパラメータにアクセストークンが表示される
きちんと入れたはずだがエラーが発生した。
{"code": 403, "error_type": "OAuthForbiddenException", "error_message": "Implicit authentication is disabled"}
manage_client/edit/securityからDisable implicit OAuthのチェックを外すときちんとURLのパラメータにアクセストーンが表示されるようになった。
参考:http://qiita.com/zurg/items/4c423b93b6a7f1ac737d
検索api
ttps://api.instagram.com/v1/users/search?q=あいうえお&access_token=[access_token]
権限がないので以下のように表示される(2015/11/17からっぽい)
{"meta":{"error_type":"OAuthPermissionsException","code":400,"error_message":"This request requires scope=public_content, but this access token is not authorized with this scope. The user must re-authorize your application with scope=public_content to be granted this permissions."}}
APIリクエスト回数限度
5000/時間
公式API限度ページ:https://www.instagram.com/developer/limits/