如何使用 InstagramWrapper APi C#

本文关键字:APi InstagramWrapper 何使用 | 更新日期: 2023-09-27 18:36:17

你好,我在这个领域新使用 api,所以请帮助我理解.. 如何使用这个 API 我想用 Instagram 登录并获取用户照片......

        InstaConfig ic = new InstaConfig();
        ic.redirect_uri = " http://localhost";
        ic.client_secret = "******";
        ic.client_id = "*******"; 
       var user = ia.GetAccessToken(code,ic); //// what is the **Code** im geting red line  ???? asking for .. 

以及如何继续使用应用程序..我已经看了每一个我找不到任何帮助的地方......请任何人帮助如何登录并获取数据..http://instagram.com/developer/authentication/....对 C# 没有帮助我从这个链接得到帮助 https://github.com/cagrik/csharp-instagram-wrapper....

如何使用 InstagramWrapper APi C#

看看 instaAPI (Instagram API 的 C# Wrapper for Instagram API) on githubcodeplex


要登录并访问已登录用户的照片:

List<Scope> scopes = new List<Scope>() { Scope.basic };
InstaConfig config = new InstaConfig("CLIENT_ID", "CLIENT_SECRET", "REDIRECT_URI", scopes);
// use this to redirect user for authenticating your application
String AuthenticationUriString = config.GetAuthenticationUriString(); 
OAuth oauth = new OAuth(config, "CODE_ATTACHED_WITH_REDIRECTEDURI_AFTERSUCCESSFUL_AUTHENTICATION");
AuthUser user = oauth.GetAuhtorisedUser();
Console.WriteLine(user.AccessToken);
Console.WriteLine(user.UserId);
Console.WriteLine(user.UserName);
Console.WriteLine(user.FullName);
Console.WriteLine(user.ProfilePicture);