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

Side by Side Diff: Src/GoogleApis.Auth/OAuth2/GoogleConsts.cs

Issue 13632059: Issue 351: Reimplement OAuth2 - Step 2 (Auth PCL - only data types) (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Patch Set: upload only data types and interfaces 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:
View unified diff | Download patch
OLDNEW
(Empty)
1 /*
2 Copyright 2013 Google Inc
3
4 Licensed under the Apache License, Version 2.0 (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
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 */
16
17 namespace Google.Apis.Auth.OAuth2
18 {
19 /// <summary>Google OAuth2 constants.</summary>
20 public static class GoogleAuthConsts
class 2013/09/24 17:25:58 This would be a good place to store "postmessage"
peleyal 2013/09/24 20:55:35 ACK On 2013/09/24 17:25:58, class wrote:
21 {
22 /// <summary>The authorization code server URL.</summary>
23 public const string AuthorizationUrl = "https://accounts.google.com/o/oa uth2/auth";
24
25 /// <summary>The approval URL (used in the WinRT solution as a callback) .</summary>
26 public const string ApprovalUrl = "https://accounts.google.com/o/oauth2/ approval";
27
28 /// <summary>The authorization token server URL</summary>
29 public const string TokenUrl = "https://accounts.google.com/o/oauth2/tok en";
30
31 /// <summary>Installed application redirect URI.</summary>
32 public const string InstalledAppRedirectUri = "urn:ietf:wg:oauth:2.0:oob ";
33
34 /// <summary>Installed application localhost redirect URI.</summary>
35 public const string LocalhostRedirectUri = "http://localhost";
36 }
37 }
OLDNEW

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