I am trying to get access to SocialCast’s API from PHP.
They have just one example, done with curl:
# Curl Example
curl -X POST -d 'password=demo&email=emily@socialcast.com' -v https://demo.socialcast.com/api/authentication.xml
How do I perform the login with PHP?
Here is the API documentation:
http://developers.socialcast.com/api-documentation/http-basic-authentication/#authentication_api_create
You probably want to use php curl wrapper http://php.net/manual/en/book.curl.php
Something like this: