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

Delta Between Two Patch Sets: Calendar.ASP.NET.MVC5/App_Start/MyClientSecrets.cs

Issue 194980043: Issue 6: Create an ASP.Net MVC Sample Base URL: https://google-api-dotnet-client.samples.googlecode.com/hg/
Left Patch Set: Correct base revision Created 9 years, 2 months ago
Right Patch Set: Addressed peleyal's comments Created 8 years, 11 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
« no previous file with change/comment | « Calendar.ASP.NET.MVC5/App_Start/MyClaimTypes.cs ('k') | Calendar.ASP.NET.MVC5/App_Start/MyRequestedScopes.cs » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 using System; 1 /*
2 Copyright 2015 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 using System;
2 using System.Collections.Generic; 18 using System.Collections.Generic;
3 using System.Linq; 19 using System.Linq;
4 using System.Web; 20 using System.Web;
5 21
6 namespace Calendar.ASP.NET.MVC5 22 namespace Calendar.ASP.NET.MVC5
7 { 23 {
8 /// <summary> 24 /// <summary>
9 /// Holds the Google API client secrets. Replace the values below with crede ntials from your developer console. 25 /// Holds the Google API client secrets. Replace the values below with crede ntials from your developer console
26 /// (https://console.developers.google.com).
10 /// </summary> 27 /// </summary>
11 internal static class MyClientSecrets 28 internal static class MyClientSecrets
12 { 29 {
13 public const string ClientId = "YOUR CLIENT ID HERE"; 30 public const string ClientId = "YOUR CLIENT ID HERE";
14 public const string ClientSecret = "YOUR CLIENT SECRET HERE"; 31 public const string ClientSecret = "YOUR CLIENT SECRET HERE";
15 } 32 }
16 } 33 }
LEFTRIGHT

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