fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Necessary rounding.
[wolnelektury.git]
/
src
/
api
/
request_validator.py
diff --git
a/src/api/request_validator.py
b/src/api/request_validator.py
index
916636b
..
2c16691
100644
(file)
--- a/
src/api/request_validator.py
+++ b/
src/api/request_validator.py
@@
-4,7
+4,7
@@
#
import time
from oauthlib.oauth1 import RequestValidator
#
import time
from oauthlib.oauth1 import RequestValidator
-from
piston
.models import Consumer, Nonce, Token
+from
api
.models import Consumer, Nonce, Token
class PistonRequestValidator(RequestValidator):
class PistonRequestValidator(RequestValidator):
@@
-20,7
+20,7
@@
class PistonRequestValidator(RequestValidator):
# iOS app generates 8-char nonces.
nonce_length = 8, 250
# iOS app generates 8-char nonces.
nonce_length = 8, 250
- # Because
piston.models.
Token.key is char(18).
+ # Because Token.key is char(18).
request_token_length = 18, 32
access_token_length = 18, 32
# TODO: oauthlib request-access switch.
request_token_length = 18, 32
access_token_length = 18, 32
# TODO: oauthlib request-access switch.