前提
PythonのRequestsのgetを使ってコードを書いています
実現したいこと
発生している問題・エラーメッセージ
Traceback (most recent call last): File "C:\Users\user\AppData\Local\Programs\Python\Python310\lib\site-packages\requests\models.py", line 971, in json return complexjson.loads(self.text, **kwargs) File "C:\Users\user\AppData\Local\Programs\Python\Python310\lib\json\__init__.py", line 346, in loads return _default_decoder.decode(s) File "C:\Users\user\AppData\Local\Programs\Python\Python310\lib\json\decoder.py", line 337, in decode obj, end = self.raw_decode(s, idx=_w(s, 0).end()) File "C:\Users\user\AppData\Local\Programs\Python\Python310\lib\json\decoder.py", line 355, in raw_decode raise JSONDecodeError("Expecting value", s, err.value) from None json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) During handling of the above exception, another exception occurred: Traceback (most recent call last): File "c:\Users\user\Documents\python-codes\example\main.py", line 25, in <module> r = requests.get(f'https://~~~/~~~LinkInfo?verificationCode={g(8)}', headers={'content-type': 'application/json'}).json() File "C:\Users\user\AppData\Local\Programs\Python\Python310\lib\site-packages\requests\models.py", line 975, in json raise RequestsJSONDecodeError(e.msg, e.doc, e.pos) requests.exceptions.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
該当のソースコード
py
1import requests, json 2r = requests.get(f'https://~~~/~~~LinkInfo?verificationCode=example1234', headers={'content-type': 'application/json'}).json() 3print(r)
~~の部分は普通のリンクです
ただ見せたくないだけです
試したこと
json形式かを見直したりした
補足情報(FW/ツールのバージョンなど)
Python 3.10
回答1件
あなたの回答
tips
プレビュー