我有下面的代碼從URL中格式無效 - Instagram的API和Python請求庫
params = {'client_id':settings.SOCIAL_AUTH_INSTAGRAM_KEY,
'client_secret':settings.SOCIAL_AUTH_INSTAGRAM_SECRET,
'aspect':'media',
'object_id':instance.hashtag,
'callback_url':'http://localhost:8000/campaigns/hook'}
response = requests.post('https://api.instagram.com/v1/subscriptions/',
params=params)
我現在用的是請求庫發送POST請求得到的圖像。但它返回錯誤信息
「無效的格式爲」callback_url \「。URL必須以」http:\/\/\「或\」https:\/\/\「開頭。 「
我不知道我收到此消息。我正在發送請求以下網址。
的區別是什麼順便說一句http%3A%2F%2F and http:\/\/\
任何想法?
你想獲得或發佈到網址? –
發佈到解決此問題的網址 – tunaktunak