いつもお世話になっております。
PythonでSkype自動送信をしたいのですがエラーが起きてしまいその対処方法を教えていただきたいです。
調べても、対処方法が見つかりませんでした。
SkypeApiのエラーなんですかね...
エラー内容
powershell
18:live:送信相手の名前 2Traceback (most recent call last): 3 File "<stdin>", line 3, in <module> 4 File "C:\Users\ASD\AppData\Local\Programs\Python\Python310\lib\site-packages\skpy\chat.py", line 491, in chat 5 json = self.skype.conn("GET", "{0}/users/ME/conversations/{1}".format(self.skype.conn.msgsHost, id), 6 File "C:\Users\ASD\AppData\Local\Programs\Python\Python310\lib\site-packages\skpy\conn.py", line 237, in __call__ 7 raise SkypeApiException("{0} response from {1} {2}".format(resp.status_code, method, url), resp) 8skpy.core.SkypeApiException: ('400 response from GET https://azwcus1-client-s.gateway.messenger.live.com/v1/users/ME/conversations/送信相手の名前', <Response [400]>)
参考にしたURL
https://tommysblog.net/python/python-skype-operation/
https://qiita.com/guinea_pig_t/items/de50f83c4877abab89e2
ソース
python
1from skpy import Skype 2mail_address="自分のメールアドレス" 3passwd="自分のパスワード" 4SP="送信相手の名前" 5sk = Skype(mail_address,passwd) # user: Skype username, pwd: Skype account password 6for chat in sk.chats.recent(): 7 print(chat) 8 channel = sk.chats.chat(SP) # 取得した id を指定 9 channel.sendMsg("Test")
環境
Python 3.10.5
Windows10 バージョン21H2(OSビルド19044.1766)
ローカル環境のpowershellで実行
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2022/07/09 12:15