以下の解決策を試すことができます。
以下のすべてのインポートがあることを確認してください。
from apiclient.discovery import build
from oauth2client.file import Storage
from oauth2client.client import AccessTokenRefreshError
from oauth2client.client import flow_from_clientsecrets
from oauth2client.tools import run
このようにclient_secrets.JSONをセットアップします
次のようにclient_secrets.jsonをセットアップします
{
"web": {
"client_id": "[[INSERT CLIENT ID HERE]]",
"client_secret": "[[INSERT CLIENT SECRET HERE]]",
"redirect_uris": [],
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://accounts.google.com/o/oauth2/token"
}
}
後で参照できるように、資格情報をファイルに保存blogger.dat
して処理を高速化できます
FLOW = flow_from_clientsecrets(Path_to_client_secrets.json,scope='https://www.googleapis.com/auth/blogger',message=MISSING_CLIENT_SECRETS_MESSAGE)
storage = Storage('blogger.dat')
credentials = storage.get()
if credentials is None or credentials.invalid:
credentials = run(FLOW, storage)
資格情報がすべて設定されたら。投稿する時間です!そのため、httplib2.Http オブジェクトを作成して HTTP リクエストを処理し、適切な資格情報で承認します。
http = httplib2.Http()
http = credentials.authorize(http)
service = build("blogger", "v2", http=http)
完了したら、ブログの本文と投稿を作成します
try:
body = {
"kind": "blogger#post",
"id": "6814573853229626501",
"title": "posted via python",
"content":"<div>hello world test</div>"
}
request = service.posts().insert(your_blogId_ID,body)
response = request.execute()
print response
except AccessTokenRefreshError:
print ("The credentials have been revoked or expired, please re-run the application to re-authorize")
お役に立てれば。