parsec-sdk icon indicating copy to clipboard operation
parsec-sdk copied to clipboard

There is a spelling error in the "Obtaining a sessionID and peerID" guide.

Open jdjingdian opened this issue 3 years ago • 0 comments

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" }'

jdjingdian avatar Nov 03 '21 07:11 jdjingdian