昨日質問させていただいた内容は解決したのですが、その後
POST data should be bytes or an iterable of bytes. It cannot be of type str.
というエラーコードに悩んでいます。
調べたところスタックトレースを見ると良いともあったのですが、できるように色々いじって見たのですが、他にエラーが増えてしまうだけでした。
プログラムとして現状
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Docomoの雑談対話APIを使ってチャットできるスクリプト
import sys
import urllib.request
import json
import os
APP_URL = 'https://api.apigw.smt.docomo.ne.jp/dialogue/v1/dialogue'
class DocomoChat(object):
#Docomoの雑談対話APIでチャット
def __init__(self, api_key):
api_key = os.environ.get('DOCOMO_DIALOGUE_API_KEY', api_key)
super(DocomoChat, self).__init__()
self.api_url = APP_URL + ('?APIKEY=%s'%api_key)
self.context, self.mode = None, None
def __send_message(self, input_message='', custom_dict=None):
req_data = {'utt': input_message}
if self.context:
req_data['context'] = self.context
if self.mode:
req_data['mode'] = self.mode
if custom_dict:
req_data.update(custom_dict)
request = urllib.request.Request(self.api_url, json.dumps(req_data))
request.add_header('Content-Type', 'application/json')
try:
response = urllib.request.urlopen(request)
except Exception as e:
print (e)
sys.exit()
return response
def __process_response(self, response):
resp_json = json.load(response)
self.context = resp_json['context'].encode('utf-8')
self.mode = resp_json['mode'].encode('utf-8')
return resp_json['utt'].encode('utf-8')
def send_and_get(self, input_message):
response = self.__send_message(input_message)
received_message = self.__process_response(response)
return received_message
def set_name(self, name, yomi):
response = self.__send_message(custom_dict={'nickname': name, 'nickname_y': yomi})
received_message = self.__process_response(response)
return received_message
def main():
chat = DocomoChat('api_key')
resp = chat.set_name('あなたのニックネーム', 'ニックネームのヨミガナ')
print (('相手 : %s'% resp))
message = ''
while message != 'バイバイ':
message = eval(input('あなた : '))
resp = chat.send_and_get(message)
print (('相手 : %s'%resp))
if __name__ == "__main__":
main()
このような状態です。
質問ばかりの頼りきりで申し訳有りません。
宜しくお願いします。