I just tried it with POSTman (REST Client Extension For Chrome), And I got the authentication code!
The following was returned!
{ "access_token": "stringhere", "refresh_token": "stringhere", "scope": [ "channel_check_subscription", "channel_commercial", "channel_editor", "channel_read", "channel_subscriptions", "chat_login", "user_follows_edit", "user_read" ] }
I guess maybe it’s cURL is giving me issues how ever trying echo 'Curl: ', function_exists('curl_version') ? 'Enabled' : 'Disabled'; on a php script echo’s Curl: Enabled
Help appreciated!
Thanks!
Edit
I Got cURL Working By Adding
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); Before curl_exec(): Which Works Like A Charm!
New Question
Can I Get this token 1 time, save it in my mySql Data base And Use It Multiple Times? Or Do These Expire?
Thanks!