通过标签WPF获取instagram photoes

时间:2018-07-27 10:53:58

标签: c# instagram-api

我正在使用Instagram API,但发现它已阻止public_content开发人员。我必须通过我的应用程序注册,但是他们要求我提供我网站的网址...,但是我正在创建桌面应用程序!也许您知道使用此API的其他方法?我的应用程序的用户可以通过AOuth,但我找不到解决方法。我也尝试使用InstaSharp,但没有帮助。

var clientID = "myid";
var clientSecret = "secret";

InstaSharp.InstagramConfig config = new 
InstaSharp.InstagramConfig(clientID, clientSecret);
OAuthResponse responses = new OAuthResponse();
var tags = new InstaSharp.Endpoints.Tags(config, responses);
var result = await tags.Recent("inst");
foreach (InstaSharp.Models.Media item in result.Data)
{
    MessageBox.Show(item.Link);
}

1 个答案:

答案 0 :(得分:1)

Instagram提供了一个公共搜索选项,它可能能够获取您想要的内容。我使用Chrome,开发者控制台和“网络活动”标签来解密正确的查询参数。

https://www.instagram.com/web/search/topsearch?context=user&q={username}

这将返回JSON结果。如果您对JSON满意,应该可以轻松地进行搜索。