Instagram粉丝列表其他用户的API

时间:2017-10-31 03:02:12

标签: c# .net instagram instagram-api

我正在尝试使用C#获取特定用户的关注者列表。

using (HttpClient httpClient = new HttpClient())
{
    using (var httpRequest = new HttpRequestMessage(HttpMethod.Get, apiEndPoint))
    {
        using (HttpResponseMessage httpResponseMessage = await httpClient.SendAsync(httpRequest).ConfigureAwait(false))
        {
            string responseJSON = await httpResponseMessage.Content.ReadAsStringAsync();
        }
    }
}

我在Instagram的Sandbox中添加了几个用户,并在授权期间添加了所有范围权限。我可以使用以下API获取以下列表 for self -

https://api.instagram.com/v1/users/self/follows?access_token= ****

但我不能为其他用户这样做。之前有一个API -

https://www.instagram.com/developer/endpoints/relationships/

现在看来Instagram最近撤销了此功能。还有其他办法吗?

如果我能提供更多细节或说明,请告诉我。

0 个答案:

没有答案