0

我正在尝试构建一个使用调查猴子 API 方法来显示数据的网站,为此我正在构建一个类库,我将在其中调用一个(仅来自某个控制器的一个)方法,该方法应该执行用户的 oauth。(我成功完成了调查猴子网站中提到的 3 步过程)但现在我只想从控制器调用一个方法到类库中的一个方法,该方法将执行用户的 oauth 并设置稍后可以使用的令牌用于 API 方法。我的代码在类库中是这样的:

HttpContext.Current.Response.Redirect(urlToAuthorize);

//what should be here (I should wait till the user gives credentials and authorize so that I can get the query string)

string tempAuthCode = HttpContext.Current.Session["code"].ToString();
if (!verifyRedirectedTempCode(tempAuthCode))
{
    return "Not a valid Token";
}
else
{
    try
    {
        var webRequest = GetWebRequestForHttpPostOfSurveyMonkeyToken(ApiKey,ClientSecret,tempAuthCode,RedirectUri,ClientId,GrantType,ContentType,WebRequestMethod);
        using (HttpWebResponse response = (HttpWebResponse)webRequest.GetResponse())
        {
            string tokenJson = new StreamReader(response.GetResponseStream()).ReadToEnd();
            AccessToken accesstokenObj = JsonConvert.DeserializeObject<AccessToken>(tokenJson);
            return accesstokenObj.Token.ToString();
        }
    }
    catch
    {
        return null;
    }
}

}

重定向后它不等待用户授权。所以,它并没有像我想的那样工作。如何等到用户授权并收集此查询字符串?它应该在类库本身中完成。

4

1 回答 1

3

你不能这样处理。OAuth 是一个两阶段的过程。您重定向到 OAuth 提供者,然后一旦用户在那里授权,他们就会重定向回您的站点,您从中断的地方开始。

这意味着您需要为此执行两项操作:一项启动流程,一项在授权后从提供程序接收有效负载。

于 2014-03-03T22:28:54.813 回答