mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2024-11-14 17:40:24 -08:00
0acf78f196
Added migration code to migrate SickBeard section with fork sickrage-api to new SiCKRAGE section
16 lines
444 B
Python
16 lines
444 B
Python
from json import loads, dumps
|
|
|
|
from oauthlib.common import to_unicode
|
|
|
|
|
|
def weibo_compliance_fix(session):
|
|
def _missing_token_type(r):
|
|
token = loads(r.text)
|
|
token["token_type"] = "Bearer"
|
|
r._content = to_unicode(dumps(token)).encode("UTF-8")
|
|
return r
|
|
|
|
session._client.default_token_placement = "query"
|
|
session.register_compliance_hook("access_token_response", _missing_token_type)
|
|
return session
|