如何在Windows Phone 8.1中集成Instagram api

时间:2015-06-18 05:32:24

标签: c# windows-phone-8.1 instagram-api

我是windows phone 8.1开发的新手,我想在我的应用程序中集成instagram api, 我不知道如何获得access_token以及什么是callbackuri和重定向uri 请指导我

我引用了这个Instasharp dll

  private void setupNewInstance()
    {

        Uri _callbackUri = WebAuthenticationBroker.GetCurrentApplicationCallbackUri();
        Debug.WriteLine(_callbackUri);
        config = new InstagramConfig(clientId, clientSecret,_callbackUri.ToString());

        var scopes = new List<OAuth.Scope>();
        scopes.Add(OAuth.Scope.Likes);
        scopes.Add(OAuth.Scope.Comments);
        var oauth = new OAuth(config);
        var link = OAuth.AuthLink(config, scopes, OAuth.ResponseType.Token);
       //this is my webview
        instaRedirect.Source = (new Uri(link));


    }

提前致谢

0 个答案:

没有答案