This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import json | |
from googleapiclient.discovery import build | |
from httplib2 import Http | |
from oauth2client import file, client, tools | |
TOKEN = '{Your Clash Royale API Key}' # クラロワ API キー | |
URL = 'https://api.clashroyale.com/v1' | |
SCOPES = 'https://www.googleapis.com/auth/spreadsheets' # read/write |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"github.com/aws/aws-sdk-go/aws" | |
"github.com/aws/aws-sdk-go/aws/credentials" | |
"github.com/aws/aws-sdk-go/aws/credentials/stscreds" | |
"github.com/aws/aws-sdk-go/aws/session" | |
"github.com/aws/aws-sdk-go/service/ec2" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const scriptProp = PropertiesService.getScriptProperties().getProperties(); | |
const KEY = scriptProp.TRELLO_API_KEY; | |
const TOKEN = scriptProp.TRELLO_TOKEN; | |
const LISTID = scriptProp.TRELLO_LIST_ID; | |
/** | |
* Trello カード | |
*/ | |
type Card = { | |
id: string; |