Don't send to sign if it's not configured
This commit is contained in:
parent
7b5dac7c6e
commit
4079896dc8
|
@ -575,12 +575,13 @@ class StatsViewSet(viewsets.ViewSet, List):
|
||||||
sign = request.data['sign']
|
sign = request.data['sign']
|
||||||
cache.set('sign', sign)
|
cache.set('sign', sign)
|
||||||
|
|
||||||
try:
|
if secrets.SIGN_TOKEN:
|
||||||
post_data = dict(access_token=secrets.SIGN_TOKEN, args=sign)
|
try:
|
||||||
r = requests.post('https://api.particle.io/v1/devices/200042000647343232363230/text/', data=post_data, timeout=5)
|
post_data = dict(access_token=secrets.SIGN_TOKEN, args=sign)
|
||||||
r.raise_for_status()
|
r = requests.post('https://api.particle.io/v1/devices/200042000647343232363230/text/', data=post_data, timeout=5)
|
||||||
except:
|
r.raise_for_status()
|
||||||
raise exceptions.ValidationError(dict(sign='Something went wrong :('))
|
except:
|
||||||
|
raise exceptions.ValidationError(dict(sign='Something went wrong :('))
|
||||||
|
|
||||||
return Response(200)
|
return Response(200)
|
||||||
except KeyError:
|
except KeyError:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user