parsec-sdk
parsec-sdk copied to clipboard
There is a spelling error in the "Obtaining a sessionID and peerID" guide.
https://github.com/parsec-cloud/parsec-sdk/tree/master/api/personal
The cURL Example
curl -X "POST" "https://kessel-api.parsecgaming.com/v1/auth" \
-H 'Content-Type: application/json \
-d $'{ "email": "YOUR_EMAIL_ADDRESS", "password": "YOUR_PASSWORD" }'
Should be
curl -X "POST" "https://kessel-api.parsecgaming.com/v1/auth" \
-H 'Content-Type: application/json' \ #Here
-d $'{ "email": "YOUR_EMAIL_ADDRESS", "password": "YOUR_PASSWORD" }'