我跟着這個鏈接OAuth 2.0 In .NET With Instagram API,它幫助我解決了我的問題,獲取我的訪問令牌。
我的代碼是這樣的:用c#在instagram中創建訂閱
NameValueCollection parameters = new NameValueCollection
{
{"client_id", ClientId},
{"client_secret", ClientSecretId},
{"object", "user"},
{"aspect", "media"},
{"verify_token", "thisIsANormalSubscription"},
{"callback_url", CallbackURI}
};
WebClient client = new WebClient();
var result = client.UploadValues(SubscriptionURI, parameters);
SubscriptionURI = 「https://api.instagram.com/v1/subscriptions」。
我正在關注來自instagram(http://instagram.com/developer/realtime/)的指南,其中包括POST請求的所有參數。但是,當它執行client.UploadValues時,我只會得到400錯誤。
PS:這是我的第一篇文章,所以可能不那麼吸引人的眼球,我都希望
我還沒有理解這個問題。你想做什麼?問題是什麼? – gsscoder
我結束了使用jQuery/ajax。 類似於此[嘗試訪問使用jquery instagram api](http://stackoverflow.com/questions/11712106/trying-to-access-instagram-api-using-jquery) –
@dead問題是,我得到我上傳值時出現400錯誤 –