[twitter] Delete twitter bot entry on oauth error

This commit is contained in:
Cathy Hu 2020-07-06 15:01:28 +02:00 committed by acipm
parent 361f84c720
commit c5781200c7

View file

@ -53,7 +53,7 @@ async def twitter_create(response: Response, hood=Depends(get_hood)):
callback_uri='http://127.0.0.1:8000/api/twitter/callback', callback_uri='http://127.0.0.1:8000/api/twitter/callback',
) )
if oauth_token['oauth_callback_confirmed'] != 'true': if oauth_token['oauth_callback_confirmed'] != 'true':
# TODO delete twitter await twitter.delete()
raise HTTPException(status_code=status.HTTP_503_SERVICE_UNAVAILABLE) raise HTTPException(status_code=status.HTTP_503_SERVICE_UNAVAILABLE)
await twitter.update( await twitter.update(
access_token=oauth_token['oauth_token'], access_token=oauth_token['oauth_token'],