我正在发出 POST 请求以尝试获取 API 访问令牌。我正在使用 Python,文档中给出的示例使用 cURL 库,如下所示...
curl \-F 'client_id=CLIENT-ID' \
-F 'client_secret=CLIENT-SECRET' \
-F 'grant_type=authorization_code' \
-F 'redirect_uri=YOUR-REDIRECT-URI' \
-F 'code=CODE' \https://api.instagram.com/oauth/access_token
我正在使用 Python 请求库并编写了以下内容...
data =
{'client_id':'xxxxxxxxxxxxxxxxxx',
'client_secret':'xxxxxxxxxxxxxxxxxx',
'grant_type':'authorization_code',
'redirect_uri':'http://localhost:14080/newpage',
'code':code}
token_url = 'https://api.instagram.com/oauth/access_token'
p = requests.post(token_url, params = data)
该 URL 不给我访问权限,我想知道我写的内容与文档示例有何不同。我是 Python(和编程)的新手,因此非常感谢您的帮助。