Выполнение Google App Script для удаленного компьютера - PullRequest
0 голосов
/ 28 августа 2018

Я работаю над сценарием на основе документации, приведенной здесь . Моя идея заключается в том, чтобы запустить скрипт приложения Google, который выполняет некоторую работу по обновлению в таблицах Google.

У меня есть все детали (перечислены ниже), необходимые для запуска сценария приложения.

  1. Области применения
  2. Credentials.json (содержит client_id, client_secret, project_id и другие необходимые данные)
  3. ID скрипта
  4. Предоставлен токен OAuth с соответствующей областью действия и
  5. Развертывание проекта сценария как исполняемого файла API

Мой скрипт на Python:

from __future__ import print_function
from apiclient import errors
from apiclient.discovery import build
from httplib2 import Http
from oauth2client import file as oauth_file, client, tools

def main():
    """Runs the sample.
    """
    SCRIPT_ID = '1v3598375_skjghksfjg79_97365XXXXS'

    # Setup the Apps Script API
    # SCOPES = 'https://www.googleapis.com/auth/script.projects'
    SCOPES = 'https://www.googleapis.com/auth/spreadsheets'
    store = oauth_file.Storage('token.json')
    creds = store.get()
    if not creds or creds.invalid:
        flow = client.flow_from_clientsecrets(r'C:\Users\Test\Desktop\credentials.json', SCOPES)
        creds = tools.run_flow(flow, store)
    service = build('script', 'v1', http=creds.authorize(Http()))

    # Create an execution request object.
    request = {"function": "doGet"}

    try:
        # Make the API request.
        response = service.scripts().run(body=request,
                scriptId=SCRIPT_ID).execute()

        if 'error' in response:
            # The API executed, but the script returned an error.
            # Extract the first (and only) set of error details. The values of
            # this object are the script's 'errorMessage' and 'errorType', and
            # an list of stack trace elements.
            error = response['error']['details'][0]
            print("Script error message: {0}".format(error['errorMessage']))

            if 'scriptStackTraceElements' in error:
                # There may not be a stacktrace if the script didn't start
                # executing.
                print("Script error stacktrace:")
                for trace in error['scriptStackTraceElements']:
                    print("\t{0}: {1}".format(trace['function'],
                        trace['lineNumber']))
        else:
            # The structure of the result depends upon what the Apps Script
            # function returns. Here, the function returns an Apps Script Object
            # with String keys and values, and so the result is treated as a
            # Python dictionary (folderSet).
            print ("DONE")

    except errors.HttpError as e:
        # The API encountered a problem before the script started executing.
        print(e.content)


if __name__ == '__main__':
    main()

Мои запросы здесь, когда я выполняю этот скрипт,

  • Он снова перенаправляет меня на страницу входа, а не авторизует (прикрепленный снимок).
  • Он запускает браузер всякий раз, когда я запускаю скрипт. Идея здесь состоит в том, чтобы запустить его, не открывая браузер.

enter image description here

Как я могу убедиться, что этот скрипт работает даже при вызове с удаленного компьютера (идея здесь заключается в том, чтобы запускать его удаленно и открывать, когда его открывает любой пользователь в организации), а также сделать браузер менее транзакционным. Просьба уточнить.

...