diff --git a/options/options.html b/options/options.html
index 9a7b930..cf2748b 100644
--- a/options/options.html
+++ b/options/options.html
@@ -22,11 +22,11 @@
Logged in as: XXX
repo and gist
scope):
-
Grant Google oauth token (paste the result code here)
*or leave it empty to use Chrome login user(for Chrome only)
-
+ -->
Please star this extension on Github
diff --git a/options/options.js b/options/options.js
index b9f80ac..f5ce139 100644
--- a/options/options.js
+++ b/options/options.js
@@ -86,7 +86,8 @@ function getGithubParam() {
const scm = 'github';
const username = $('#username').val();
const token = $('#accesstoken').val();
- const apiKey = $('#api-key').val();
+ // const apiKey = $('#api-key').val();
+ const apiKey = null;
const baseUrl = `https://api.github.com`;
const otp = $('#otp').val();
return {
@@ -104,7 +105,8 @@ function getGHEParam() {
const username = $('#ghe-username').val();
const password = $('#ghe-password').val();
const token = $('#ghe-accesstoken').val();
- const apiKey = $('#ghe-api-key').val();
+ // const apiKey = $('#ghe-api-key').val();
+ const apiKey = null;
const baseUrl = $('#ghe-url').val() + '/api/v3';
const otp = $('#ghe-otp').val();
return {
@@ -122,7 +124,8 @@ function getBitbucketParam() {
const scm = 'bitbucket';
const username = $('#bitbucket-email').val();
const password = $('#bitbucket-password').val();
- const apiKey = $('#bitbucket-api-key').val();
+ // const apiKey = $('#bitbucket-api-key').val();
+ const apiKey = null;
const baseUrl = `https://api.bitbucket.org/2.0`;
return {
scm,
@@ -139,7 +142,8 @@ function getGitLabParam() {
const password = $('#gitlab-password').val();
const token = $('#gitlab-accesstoken').val();
const tokenType = (token && token.length > 0) ? 'personalToken' : 'oAuth';
- const apiKey = $('#gitlab-api-key').val();
+ // const apiKey = $('#gitlab-api-key').val();
+ const apiKey = null;
const baseUrl = ($('#gitlab-url').val() || 'https://gitlab.com') + '/api/v4';
return {
scm,
@@ -164,7 +168,7 @@ function addCred(param) {
const payload = {
code: param.apiKey,
client_id: "971735641612-am059p55sofdp30p2t4djecn72l6kmpf.apps.googleusercontent.com",
- client_secret: "epw3f_WvEn0Uwqi6kE7DBQl7",
+ client_secret: __SECRET__,
redirect_uri: "urn:ietf:wg:oauth:2.0:oob",
grant_type: "authorization_code",
access_type: "offline"
diff --git a/src/gas/script-api.js b/src/gas/script-api.js
index 858eb6a..ef0e5d8 100644
--- a/src/gas/script-api.js
+++ b/src/gas/script-api.js
@@ -142,7 +142,7 @@ class ScriptApi {
const payload = {
refresh_token: context.gapiRefreshToken,
client_id: "971735641612-am059p55sofdp30p2t4djecn72l6kmpf.apps.googleusercontent.com",
- client_secret: "epw3f_WvEn0Uwqi6kE7DBQl7",
+ client_secret: __SECRET__,
redirect_uri: "urn:ietf:wg:oauth:2.0:oob",
grant_type: "refresh_token",
}