Skip to content

Commit bf87533

Browse files
committed
Yahoo.gs typo
1 parent 6f5ea84 commit bf87533

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

samples/Yahoo.gs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var CLIENT_ID = '...';
88
var CLIENT_SECRET = '...';
99

1010
/**
11-
* Authorizes and makes a request to the LinkedIn API.
11+
* Authorizes and makes a request to the Yahoo API.
1212
*/
1313

1414
function run() {
@@ -45,15 +45,15 @@ function getService() {
4545
// Set the endpoint URLs.
4646
.setAuthorizationBaseUrl('https://api.login.yahoo.com/oauth2/request_auth')
4747
.setTokenUrl('https://api.login.yahoo.com/oauth2/get_token')
48-
48+
4949
// Set the client ID and secret.
5050
.setClientId(CLIENT_ID)
5151
.setClientSecret(CLIENT_SECRET)
52-
52+
5353
// Set the name of the callback function that should be invoked to complete
5454
// the OAuth flow.
5555
.setCallbackFunction('authCallback')
56-
56+
5757
// Set the property store where authorized tokens should be persisted.
5858
.setPropertyStore(PropertiesService.getUserProperties());
5959
}

0 commit comments

Comments
 (0)