3

このコードは機能するようになりました。

API を呼び出す python2.7 を介して Google の Blogger サイトに新しいブログ投稿を挿入する際に問題が発生しています。認証を処理するために、Googleのすべてのoauth2clientモジュールがあります。Blogger V3 API を使用する権限があります。これは Google 開発者コンソールで有効化されています。機能した同じcredentials.datを使用して単純なAPIリクエストを実行しました:

これは機能しました(完全なコードは含まれていません)

service = build('blogger','v3', http=http)
try:
    request = service.blogs().get(blogId="6814573853229626501")
    response = request.execute()
    print response

Google api ディスカバリ サービスにより、投稿を挿入するコードは次のようになると思われ ます https://developers.google.com/apis-explorer/#p/blogger/v3/blogger.posts.insert

service = build('blogger','v3', http=http)

try:
    body = {
        "kind": "blogger#post",
        "id": "6814573853229626501",
        "title": "posted via python",
        "content":"<div>hello world test</div>"
        }

    request = service.posts().insert(blogId="6814573853229626501",body=body)

    response = request.execute()
    print response

私が台無しにしているのは body=body の部分だと確信していますか?手がかりはありますか?

ここに私が得るエラーがあります:

Traceback (most recent call last):
  File "blogger.py", line 104, in <module>
    main()
  File "blogger.py", line 93, in main
    response = request.execute()
  File "/usr/local/lib/python2.7/dist-packages/google_api_python_client-1.0c2-py2.7.egg/apiclient/http.py", line 654, in execute
    raise HttpError(resp, content, self.uri)
apiclient.errors.HttpError: <HttpError 400 when requesting https://www.googleapis.com/blogger/v3/blogs/6814573853229626501/posts?alt=json returned "Invalid Value">

もし興味があれば、私は当時興味を持っていた eBay データによって生成された私の Google フュージョン テーブルからチャートを投稿する実験を行っています.

4

2 に答える 2

4

どういうわけかどのブロガーにも投稿できます

__author__ = 'spandey2405@gmail.com (Saurabh Pandey)'

import sys
from oauth2client import client
from googleapiclient import sample_tools

  # Authenticate and construct service.
  service, flags = sample_tools.init(
      argv, 'blogger', 'v3', __doc__, __file__,
      scope='https://www.googleapis.com/auth/blogger')

  try:

      users = service.users()

      # Retrieve this user's profile information
      thisuser = users.get(userId='self').execute()
      print('This user\'s display name is: %s' % thisuser['displayName'])

      blogs = service.blogs()

      # Retrieve the list of Blogs this user has write privileges on
      thisusersblogs = blogs.listByUser(userId='self').execute()
      for blog in thisusersblogs['items']:
        print('The blog named \'%s\' is at: %s' % (blog['name'], blog['url']))

      posts = service.posts()
      body = {
        "kind": "blogger#post",
        "id": "6701167141462934671",
        "title": "posted via python",
        "content":"<div>hello world test</div>"
        }
      insert = posts.insert(blogId='6701167141462934671', body=body)
      posts_doc = insert.execute()
      print posts_doc


  except client.AccessTokenRefreshError:
    print ('The credentials have been revoked or expired, please re-run'
      'the application to re-authorize')
于 2015-10-28T07:57:42.150 に答える
1

"data": データの周りのオブジェクト ラッパーは必要ありません。クライアント ライブラリは、サーバーがそれを必要とする場合にそれを追加します。このドキュメントは、挿入呼び出しで使用するオブジェクトの形式を示しています。

https://google-api-client-libraries.appspot.com/documentation/blogger/v3/python/latest/blogger_v3.posts.html#insert

于 2012-11-22T03:29:47.680 に答える