This repository has been archived by the owner on Oct 31, 2021. It is now read-only.
forked from airhadoken/twitter-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOAuth1.gs
45 lines (41 loc) · 1.71 KB
/
OAuth1.gs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2015 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/**
* @fileoverview Contains the methods exposed by the library, and performs any
* required setup.
*/
// Load the Underscore.js library. This library was added using the project
// key "MGwgKN2Th03tJ5OdmlzB8KPxhMjh3Sh48".
var _ = Underscore.load();
/**
* Creates a new OAuth1 service with the name specified. It's usually best to
* create and configure your service once at the start of your script, and then
* reference it during the different phases of the authorization flow.
* @param {string} serviceName The name of the service.
* @return {Service_} The service object.
*/
function createService(serviceName) {
return new Service_(serviceName);
}
/**
* Returns the callback URL that will be used for a given script. Often this URL
* needs to be entered into a configuration screen of your OAuth provider.
* @param {string} scriptId The ID of your script, which can be found
* in the Script Editor UI under "File > Project properties".
* @return {string} The callback URL.
*/
function getCallbackUrl(scriptId) {
return Utilities.formatString(
'https://script.google.com/macros/d/%s/usercallback', scriptId);
}