我是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));
}
提前致谢