我必须在Python3中加载这个JSON代码:
{'code': 161, 'message': "You are unable to follow more people at this time. Learn more <a href='http://support.twitter.com/articles/66885-i-can-t-follow-people-follow-limits'>here</a>."}
问题是JSON需要&#34;而不是&#39;,所以我使用了这行代码:
errorLog = json.loads(str.replace(str(error.message[0]), "'", '"'))
这取代了所有的&#39; by&#34;。它适用于大多数错误消息,但上面的错误信息根本不起作用,因为&#39;在邮件中的链接中。 而现在我已经没有想法加载这个JSON ......
你能找到解决方案吗?
Lyxilion。