Remove scripts
This commit is contained in:
parent
50a777cecb
commit
7f1c14d285
|
@ -1,7 +0,0 @@
|
||||||
curl https://sandbox-b2b.revolut.com/api/1.0/auth/token \
|
|
||||||
-H "Content-Type: application/x-www-form-urlencoded"\
|
|
||||||
--data "grant_type=authorization_code"\
|
|
||||||
--data "code=oa_sand_[...]"\
|
|
||||||
--data "client_id=XXXX_[...]"\
|
|
||||||
--data "client_assertion_type=urn:ietf:params:oauth:client-assertion-type:jwt-bearer"\
|
|
||||||
--data "client_assertion=long string [...]"
|
|
|
@ -1,20 +0,0 @@
|
||||||
from cryptography.hazmat.primitives import serialization
|
|
||||||
from cryptography.hazmat.backends import default_backend
|
|
||||||
from json import load
|
|
||||||
import jwt
|
|
||||||
|
|
||||||
PRIVATE_KEY = "pkcs8privatekey.pem"
|
|
||||||
PAYLOAD = "jwt"
|
|
||||||
|
|
||||||
with open(PRIVATE_KEY, "rb") as f:
|
|
||||||
pem_bytes = f.read()
|
|
||||||
|
|
||||||
with open(PAYLOAD, "rb") as f:
|
|
||||||
payload = load(f)
|
|
||||||
|
|
||||||
print(pem_bytes)
|
|
||||||
print(payload)
|
|
||||||
|
|
||||||
private_key = serialization.load_pem_private_key(pem_bytes, password=None, backend=default_backend())
|
|
||||||
encoded = jwt.encode(payload, private_key, algorithm="RS256")
|
|
||||||
print(encoded)
|
|
|
@ -1,7 +0,0 @@
|
||||||
curl https://sandbox-b2b.revolut.com/api/1.0/auth/token \
|
|
||||||
-H "Content-Type: application/x-www-form-urlencoded"\
|
|
||||||
--data "grant_type=refresh_token"\
|
|
||||||
--data "refresh_token=oa_sand_[...]"\
|
|
||||||
--data "client_id=XXXX_[...]"\
|
|
||||||
--data "client_assertion_type=urn:ietf:params:oauth:client-assertion-type:jwt-bearer"\
|
|
||||||
--data "client_assertion=long string [...]"
|
|
Loading…
Reference in New Issue