import requests import json import sys BASE_URL = "https://api.ce-cotoha.com/api/dev/" CLIENT_ID = "ãªã㨠ã¢ã¤ã㣠ã¤ã¬ã«" CLIENT_SECRET = "ãªã㨠ã·ã¼ã¯ã¬ãã ã¤ã¬ã«" def auth(client_id, client_secret): token_url = "https://api.ce-cotoha.com/v1/oauth/accesstokens" headers = { "Content-Type": "application/json", "charset": "UTF-8" } data = { "grantType": "client_credentials", "clientId": client_id, "clientSecret": cli
{{#tags}}- {{label}}
{{/tags}}