我正在尝试使用Instagram API获取访问令牌,但结果我得到400(错误请求)。 我使用https://api.instagram.com/oauth/access_token获取访问令牌,并传递访问此API所需的5个参数。代码在c#中。 应用程序状态为Live on Instagram。请帮忙。
这是我的代码
Dictionary<string, string> dictionary = new Dictionary<string, string>();
dictionary.Add("client_id", this.appId);
dictionary.Add("client_secret", this.appSecret);
dictionary.Add("grant_type", "authorization_code");
dictionary.Add("redirect_uri", returnUrl.AbsoluteUri);
dictionary.Add("code", authorizationCode);
string result;
using (WebClient webClient = new WebClient())
{
string text = webClient.UploadString("https://api.instagram.com/oauth/access_token", MessagingUtilities.CreateQueryString(dictionary));
}