4

我很难理解范围是如何工作的。

我在这里找到了一个描述stackexchange api范围的小文本,但我需要更多关于它们如何工作的信息(不是特别是这个......)。有人可以给我一个概念吗?

提前致谢

4

1 回答 1

3

要授权应用程序,您需要调用 OAuth2 授权过程的 URL。这个 URL 在 API 的提供者文档中是“活的”。例如谷歌有这个网址:

https://accounts.google.com/o/auth2/auth

您还需要使用此链接指定一些查询参数:

  • cliend_id
  • redirect_uri
  • scope:您的应用程序请求访问的数据。这通常被指定为以空格分隔的字符串列表,尽管 Facebook 使用逗号分隔的字符串。的有效值scope应包含在 API 提供程序文档中。对于 Gougle Tasks,scopehttps://www.googleapis.com/auth/tasks. 如果应用程序还需要访问 Google Docs,它会指定一个scopehttps://www.googleapis.com/auth/tasks https://docs.google.com/feeds
  • response_typecode对于服务端web应用流程,表示code用户批准授权请求后,将向应用返回授权。
  • state:您的应用程序使用的唯一值,以防止对您的实现进行跨站点请求伪造 (CSRF) 攻击。该值应该是此特定请求的随机唯一字符串,不可猜测且在客户端中保密(可能在服务器端会话中)

// Generate random value for use as the 'state'.  Mitigates
// risk of CSRF attacks when this value is verified against the
// value returned from the OAuth provider with the authorization
// code.
$_SESSION['state'] = rand(0,999999999);

$authorizationUrlBase = 'https://accounts.google.com/o/oauth2/auth';
$redirectUriPath = '/oauth2callback.php';

// For example only.  A valid value for client_id needs to be obtained 
// for your environment from the Google APIs Console at 
// http://code.google.com/apis/console.
$queryParams = array(
  'client_id' => '240195362.apps.googleusercontent.com',
  'redirect_uri' => (isset($_SERVER['HTTPS'])?'https://':'http://') .
                   $_SERVER['HTTP_HOST'] . $redirectUriPath,
  'scope' => 'https://www.googleapis.com/auth/tasks',
  'response_type' => 'code',
  'state' => $_SESSION['state'],
  'approval_prompt' => 'force', // always request user consent
  'access_type' => 'offline' // obtain a refresh token
);

$goToUrl = $authorizationUrlBase . '?' . http_build_query($queryParams);

// Output a webpage directing users to the $goToUrl after 
// they click a "Let's Go" button
include 'access_request_template.php';

Google 授权服务器支持的 Web 服务器应用程序的查询字符串参数集如下:

https://developers.google.com/accounts/docs/OAuth2WebServer?hl=el#formingtheurl

于 2013-04-16T18:25:40.093 回答