我正在使用Instagram API。
我正在为订阅请求尝试一个简单的帖子,而且我一直在
“'callback_url'的格式无效.URL必须以http://或者。开头 HTTPS://”
显然从那开始。
我在网上找不到任何遇到同样问题的人。
尝试使用明确的回调网址
http://api.instagram.com/v1/subscriptions/?client_id={client_id}&client_secret={secret}&object=tag&aspect=media&object_id=skateboarding&callback_url=http://skateparkoftampa.com/spot/instagram_callback.aspx
使用HTML编码的回调URL
:
http://api.instagram.com/v1/subscriptions/?client_id={client_id}&client_secret={secret}&object=tag&aspect=media&object_id=skateboarding&callback_url=http%3A%2F%2Fskateparkoftampa.com%2Fspot%2Finstagram_callback.aspx
同时尝试使用GET和POST,也让API控制台通过简单地填写参数字段等来创建请求。我觉得我错过了一些非常明显的东西,但是我被卡住了。有什么想法吗?
答案 0 :(得分:0)
作为Endpoints page上的sais:
所有端点只能通过 https
访问
您应该使用自己的CLIENT-ID
和SECRET-ID
以及callback url
(因此请勿使用API console
)。
您的callback url
可能没有https
。
只需使用与https
的链接:
https://api.instagram.com/v1/subscriptions/
中的示例
您应该使用POST
请求订阅和取消订阅,并GET
获取订阅列表。请准确地阅读documentation。