在instagram API文档之后,我在命令行中运行了以下命令:
$ curl -F 'client_id=my_client_id' \
> -F 'client_secret=my_client_secret' \
> -F 'object-geography' \
> -F 'aspect=media' \
> -F 'lat=35.657872' \
> -F 'lng=139.70232' \
> -F 'radius=1000' \
> -F 'callback_url=http://http://requestb.in/my_string' \
> https://api.instagram.com/v1/subscriptions/
并收到以下错误:
Warning: Illegally formatted input field!
curl: option -F: is badly used here
curl: try 'curl --help' or 'curl --manual' for more information
我确实尝试过curl --help和curl --manual,但是根据他们的内容无法解决这个问题。我如何成功创建订阅?
答案 0 :(得分:1)
你遇到这个问题:
> -F 'object-geography' \
它应该是Key=Value
配对参数。但是你只使用一个。所以看看这个。可能会是
> -F 'object=geography' \
^ check this