我正在尝试使用v3 imgur api从imgur.com获取一些公共数据,但每当我使用curl发出请求时,我都会收到401。
这就是我调用API(using this example from the example python app) -
的方法curl -F "Authorization=Client-ID <my_client_id_provided_by_registering_my_app>" https://api.imgur.com/3/gallery/hot/viral/0.json
我也试过
curl -F "client_id=<my_client_id>" https://api.imgur.com/3/gallery/hot/viral/0.json
所以我的问题是, imgur api对auth标头的期望格式是什么?如何使用curl或其他常见的bash实用程序来利用它?
答案 0 :(得分:5)
交换机-F
(或--form
)用于发送HTTP表单。您应该使用的是-H
(--header
):
curl --header "Authorization: Client-ID $YOUR_ID" https://api.imgur.com/3/gallery/hot/viral/0.json