Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(686)

Delta Between Two Patch Sets: Src/GoogleApis.Auth/OAuth2/Requests/GoogleAssertionTokenRequest.cs

Issue 13972043: Issue 351: Reimplement OAuth2 (Step 3 - Tests, Flows and Credential) (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Left Patch Set: Jon Skeet review Created 10 years, 6 months ago
Right Patch Set: minor Created 10 years, 6 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
1 /* 1 /*
2 Copyright 2013 Google Inc 2 Copyright 2013 Google Inc
3 3
4 Licensed under the Apache License, Version 2.0 (the "License"); 4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License. 5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at 6 You may obtain a copy of the License at
7 7
8 http://www.apache.org/licenses/LICENSE-2.0 8 http://www.apache.org/licenses/LICENSE-2.0
9 9
10 Unless required by applicable law or agreed to in writing, software 10 Unless required by applicable law or agreed to in writing, software
(...skipping 15 matching lines...) Expand all
26 /// <summary>Gets or sets the JWT (including signature).</summary> 26 /// <summary>Gets or sets the JWT (including signature).</summary>
27 [Google.Apis.Util.RequestParameterAttribute("assertion")] 27 [Google.Apis.Util.RequestParameterAttribute("assertion")]
28 public string Assertion { get; set; } 28 public string Assertion { get; set; }
29 29
30 /// <summary> 30 /// <summary>
31 /// Constructs a new refresh code token request and sets grant_type to· 31 /// Constructs a new refresh code token request and sets grant_type to·
32 /// <c>urn:ietf:params:oauth:grant-type:jwt-bearer</c>. 32 /// <c>urn:ietf:params:oauth:grant-type:jwt-bearer</c>.
33 /// </summary> 33 /// </summary>
34 public GoogleAssertionTokenRequest() 34 public GoogleAssertionTokenRequest()
35 { 35 {
36 GrantType = "urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Ajwt-bearer"; // @"urn:ietf:params:oauth:grant-type:jwt-bearer"; 36 GrantType = "urn:ietf:params:oauth:grant-type:jwt-bearer";
37 } 37 }
38 } 38 }
39 } 39 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b