According to what i’m reading i need to take the code from the callback request and create another post request to get an access token.
POST https://login.eveonline.com/oauth/token HTTP/1.1
Authorization: Basic bG9…ZXQ=
Content-Type: application/x-www-form-urlencoded
Host: login.eveonline.comgrant_type=authorization_code&code=gEyuYF_rf…ofM0
I know i can use CURL in php to make a post request to an outside URL but not sure how to include the header information. Can someone point me in the right direction?