Использование apiclient.discovery.build для реселлера API
Я пытаюсь создать service
для reseller api
в Python-2.7, который включает в себя oauth 2.0
, Oauth 2.0 работает правильно, потому что я убедился, что могу получить access token
, У меня есть это сообщение об ошибке, потому что я не могу найти нужную документацию для обслуживания посредника. Несмотря на чтение кода внутри apiclient.discovery.build
Кто-нибудь может помочь мне определить проблему (вопрос в последней части этого сообщения).
Вот ошибка:
Traceback (most recent call last):
File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2-2.5.2\webapp2.py", line 1535, in __call__
rv = self.handle_exception(request, response, e)
File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2-2.5.2\webapp2.py", line 1529, in __call__
rv = self.router.dispatch(request, response)
File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2-2.5.2\webapp2.py", line 1278, in default_dispatcher
return route.handler_adapter(request, response)
File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2-2.5.2\webapp2.py", line 1102, in __call__
return handler.dispatch()
File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2-2.5.2\webapp2.py", line 572, in dispatch
return self.handle_exception(e, self.app.debug)
File "C:\Program Files (x86)\Google\google_appengine\lib\webapp2-2.5.2\webapp2.py", line 570, in dispatch
return method(*args, **kwargs)
File "C:\xampp\htdocs\reseller-asteriainteractive\oauth2client\appengine.py", line 777, in setup_oauth
resp = method(request_handler, *args, **kwargs)
File "C:\xampp\htdocs\reseller-asteriainteractive\main.py", line 74, in post
customer_document = customers.insert().execute(decorator.http())
File "C:\xampp\htdocs\reseller-asteriainteractive\apiclient\discovery.py", line 583, in method
raise TypeError('Missing required parameter "%s"' % name)
TypeError: Missing required parameter "body"
Вот мой код:
class CustomerCreateHandler(BaseHandler):
@decorator.oauth_aware
def post(self):
admin_user = users.is_current_user_admin()
user = users.get_current_user()
if user:
if decorator.has_credentials():
customers = reseller_service.customers()
customer_document = customers.insert().execute(decorator.http())
self.redirect('/customer/create/')
Как должен быть создан reseller_service? Где мне поставить параметр "тело"?
1 ответ
Потрясающие!
Я наконец нашел это в клиентской библиотеке Google API: https://developers.google.com/resources/api-libraries/documentation/reseller/v1sandbox/python/latest/reseller_v1sandbox.customers.html