Jump to content

Recommended Posts

Hi there,

 

I’m having a real heap of trouble with PHP and cURL.

 

My aim is to use this code (or something like it) to submit 2 fields to a remote server (using GET) and receive back 6 fields (again with GET).

 

When I run the function below, I get back a 401 unauthorized error although the Username and Password are correct.  Presumably then, they are not reaching the remote server at all or in the correct state.  Problem is, I know so little about cURL that I don’t know what the correct state is., and that’s before I start worrying about getting data back from the server!

 

Below is the guide from the service provider about communicating with their server.  Unfortunately they have been of absolutely no help so far so I’d be really grateful if you could give me any suggestions about where I am going wrong and what I should do instead.

 

Yours,

Paul.

 

//Constants

$bcUser = 'ConnectBusinessUK';

$bcPass = 'xxxxxx';

$bcURL = 'http://service.bulletinconnect.net/api/1/sms/in';

$bcRatecode = FALSE;

 

//Receive function

function Receive($user, $pass) {

global $bcURL;

$data = "userId=".urlencode($user)

. "&password=".urlencode($pass);

$cUrl = curl_init();

curl_setopt($cUrl, CURLOPT_URL, $bcURL);

curl_setopt($cUrl, CURLOPT_HEADER, 'Content-type: application/x-www-form-urlencoded');

curl_setopt($cUrl, CURLOPT_GET, 1);

curl_setopt($cUrl, CURLOPT_GETFIELDS, $data);

curl_setopt($cUrl, CURLOPT_TIMEOUT, 30);

curl_exec($cUrl);

$code = curl_getinfo($cUrl, CURLINFO_HTTP_CODE);

curl_close($cUrl);

return ($code == 200 || $code == 204) ? TRUE : FALSE;

}

 

//Execute function

Receive($bcUser, $bcPass);

************************************************************************

To Receive a Message

 

Clients can GET incoming messages from http://service.bulletinconnect.net/api/1/sms/in . Users of the AAPT Bulletin Connect will need to use a different URL for Sending and Receiving Messages/Staus updates. See the AAPT Bulletin Connect section for more details on what URL you should use.

Required Input parameters are:

• userId

• password

 

The userId and password are supplied to you by Bulletin Wireless when you sign up for a Bulletin Connect account. You may pass them to the server in a query string, or in the HTTP Authorization header in Basic format.

Bulletin Connect will respond to each and every HTTP request with one of the following result codes.

• 200- OK

• 204- No content to return

• 401- Unauthorized

• 500- Internal error

For 200 codes (success) Bulletin Connect will include a form encoded parameter list containing message information as described here

• messageID

• from

• to

• rateCode

• inReplyTold

• body

N.B. The order of the parameters may change so use value/pair matching rather than location mapping.

 

Link to comment
https://forums.phpfreaks.com/topic/50465-php-and-curl/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.