Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(423)

Unified Diff: discovery/googleapis/oauth2__v2.json

Issue 559053002: Generate 0.1.0 version of googleapis/googleapis_beta (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: discovery/googleapis/oauth2__v2.json
diff --git a/discovery/googleapis/oauth2__v2.json b/discovery/googleapis/oauth2__v2.json
new file mode 100644
index 0000000000000000000000000000000000000000..75de382fe3c87f2655a96ed29a265bcdc6fc260d
--- /dev/null
+++ b/discovery/googleapis/oauth2__v2.json
@@ -0,0 +1,243 @@
+{
+ "auth": {
+ "oauth2": {
+ "scopes": {
+ "https://www.googleapis.com/auth/plus.login": {
+ "description": "Know your basic profile info and list of people in your circles."
+ },
+ "https://www.googleapis.com/auth/plus.me": {
+ "description": "Know who you are on Google"
+ },
+ "https://www.googleapis.com/auth/userinfo.email": {
+ "description": "View your email address"
+ },
+ "https://www.googleapis.com/auth/userinfo.profile": {
+ "description": "View your basic profile info"
+ }
+ }
+ }
+ },
+ "basePath": "/",
+ "baseUrl": "https://www.googleapis.com/",
+ "batchPath": "batch",
+ "description": "Lets you access OAuth2 protocol related APIs.",
+ "discoveryVersion": "v1",
+ "documentationLink": "https://developers.google.com/accounts/docs/OAuth2",
+ "etag": "\"uUWyYHXmEn-ab7WLvo8qNz2S8ws/GL-dbqdl5oZGNiFahadB80nONis\"",
+ "icons": {
+ "x16": "http://www.google.com/images/icons/product/search-16.gif",
+ "x32": "http://www.google.com/images/icons/product/search-32.gif"
+ },
+ "id": "oauth2:v2",
+ "kind": "discovery#restDescription",
+ "methods": {
+ "tokeninfo": {
+ "httpMethod": "POST",
+ "id": "oauth2.tokeninfo",
+ "parameters": {
+ "access_token": {
+ "location": "query",
+ "type": "string"
+ },
+ "id_token": {
+ "location": "query",
+ "type": "string"
+ }
+ },
+ "path": "oauth2/v2/tokeninfo",
+ "response": {
+ "$ref": "Tokeninfo"
+ }
+ }
+ },
+ "name": "oauth2",
+ "ownerDomain": "google.com",
+ "ownerName": "Google",
+ "parameters": {
+ "alt": {
+ "default": "json",
+ "description": "Data format for the response.",
+ "enum": [
+ "json"
+ ],
+ "enumDescriptions": [
+ "Responses with Content-Type of application/json"
+ ],
+ "location": "query",
+ "type": "string"
+ },
+ "fields": {
+ "description": "Selector specifying which fields to include in a partial response.",
+ "location": "query",
+ "type": "string"
+ },
+ "key": {
+ "description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.",
+ "location": "query",
+ "type": "string"
+ },
+ "oauth_token": {
+ "description": "OAuth 2.0 token for the current user.",
+ "location": "query",
+ "type": "string"
+ },
+ "prettyPrint": {
+ "default": "true",
+ "description": "Returns response with indentations and line breaks.",
+ "location": "query",
+ "type": "boolean"
+ },
+ "quotaUser": {
+ "description": "Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. Overrides userIp if both are provided.",
+ "location": "query",
+ "type": "string"
+ },
+ "userIp": {
+ "description": "IP address of the site where the request originates. Use this if you want to enforce per-user limits.",
+ "location": "query",
+ "type": "string"
+ }
+ },
+ "protocol": "rest",
+ "resources": {
+ "userinfo": {
+ "methods": {
+ "get": {
+ "httpMethod": "GET",
+ "id": "oauth2.userinfo.get",
+ "path": "oauth2/v2/userinfo",
+ "response": {
+ "$ref": "Userinfoplus"
+ },
+ "scopes": [
+ "https://www.googleapis.com/auth/plus.login",
+ "https://www.googleapis.com/auth/plus.me",
+ "https://www.googleapis.com/auth/userinfo.email",
+ "https://www.googleapis.com/auth/userinfo.profile"
+ ]
+ }
+ },
+ "resources": {
+ "v2": {
+ "resources": {
+ "me": {
+ "methods": {
+ "get": {
+ "httpMethod": "GET",
+ "id": "oauth2.userinfo.v2.me.get",
+ "path": "userinfo/v2/me",
+ "response": {
+ "$ref": "Userinfoplus"
+ },
+ "scopes": [
+ "https://www.googleapis.com/auth/plus.login",
+ "https://www.googleapis.com/auth/plus.me",
+ "https://www.googleapis.com/auth/userinfo.email",
+ "https://www.googleapis.com/auth/userinfo.profile"
+ ]
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "revision": "20140820",
+ "rootUrl": "https://www.googleapis.com/",
+ "schemas": {
+ "Tokeninfo": {
+ "id": "Tokeninfo",
+ "properties": {
+ "access_type": {
+ "description": "The access type granted with this token. It can be offline or online.",
+ "type": "string"
+ },
+ "audience": {
+ "description": "Who is the intended audience for this token. In general the same as issued_to.",
+ "type": "string"
+ },
+ "email": {
+ "description": "The email address of the user. Present only if the email scope is present in the request.",
+ "type": "string"
+ },
+ "expires_in": {
+ "description": "The expiry time of the token, as number of seconds left until expiry.",
+ "format": "int32",
+ "type": "integer"
+ },
+ "issued_to": {
+ "description": "To whom was the token issued to. In general the same as audience.",
+ "type": "string"
+ },
+ "scope": {
+ "description": "The space separated list of scopes granted to this token.",
+ "type": "string"
+ },
+ "user_id": {
+ "description": "The Gaia obfuscated user id.",
+ "type": "string"
+ },
+ "verified_email": {
+ "description": "Boolean flag which is true if the email address is verified. Present only if the email scope is present in the request.",
+ "type": "boolean"
+ }
+ },
+ "type": "object"
+ },
+ "Userinfoplus": {
+ "id": "Userinfoplus",
+ "properties": {
+ "email": {
+ "description": "The user's email address.",
+ "type": "string"
+ },
+ "family_name": {
+ "description": "The user's last name.",
+ "type": "string"
+ },
+ "gender": {
+ "description": "The user's gender.",
+ "type": "string"
+ },
+ "given_name": {
+ "description": "The user's first name.",
+ "type": "string"
+ },
+ "hd": {
+ "description": "The hosted domain e.g. example.com if the user is Google apps user.",
+ "type": "string"
+ },
+ "id": {
+ "description": "The focus obfuscated gaia id of the user.",
+ "type": "string"
+ },
+ "link": {
+ "description": "URL of the profile page.",
+ "type": "string"
+ },
+ "locale": {
+ "description": "The user's preferred locale.",
+ "type": "string"
+ },
+ "name": {
+ "description": "The user's full name.",
+ "type": "string"
+ },
+ "picture": {
+ "description": "URL of the user's picture image.",
+ "type": "string"
+ },
+ "verified_email": {
+ "default": "true",
+ "description": "Boolean flag which is true if the email address is verified. Always verified because we only return the user's primary email address.",
+ "type": "boolean"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "servicePath": "",
+ "title": "Google OAuth2 API",
+ "version": "v2"
+}

Powered by Google App Engine
This is Rietveld 408576698