public static OAuthResponse GetOAuthResponse(string code)
        {
            var auth = new InstagramOAuth(InstagramConfig);
            var oauthResponse = auth.RequestToken(code);

            return oauthResponse;
        }
Exemplo n.º 2
0
        public static OAuthResponse GetOAuthResponse(string code)
        {
            var auth          = new InstagramOAuth(InstagramConfig);
            var oauthResponse = auth.RequestToken(code);

            return(oauthResponse);
        }