Jump to content

PHP cURL Post Help


Thomas_L

Recommended Posts

I have a working API that I can get a json web token from in curl on my server, jquery ajax, postman, anything id like but php cURL.. I need help. I'm sure I'm over looking something easy.

$curl = curl_init();

curl_setopt_array($curl, array(

  CURLOPT_URL => 'http://xxxxx/xxxxx/xxxx/auth/login',

  CURLOPT_RETURNTRANSFER => true,

  CURLOPT_ENCODING => '',

  CURLOPT_MAXREDIRS => 10,

  CURLOPT_TIMEOUT => 0,

  CURLOPT_FOLLOWLOCATION => true,

  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,

  CURLOPT_CUSTOMREQUEST => 'POST',

  CURLOPT_POSTFIELDS =>'{

    "checked":"",

    "username":"xxxxxxxx",

    "password":"xxxxxxxx"

}',

  CURLOPT_HTTPHEADER => array(     

    'Content-Type: application/json'

  ),

));

$response = curl_exec($curl);

curl_close($curl);

echo $response;

 

 

Here is my Ajax code that works:

<script>

var settings = {

  "url": "xxxxxxx/xxxxxxx/xxxxxxxxx",

  "crossDomain": "true",

  "method": "POST",

  "timeout": 0,

  "headers": {    

    "Content-Type": "application/json"

  },

  "data": JSON.stringify({

    "checked": "",

    "username": "xxxxxxxx",

    "password": "xxxxxxxx"

  }),

};

 

$.ajax(settings).done(function (response) {

  console.log(response);

});

 

</script>

 

 

Im lost.

I have checked that cURL is enabled on my server. I have tested pulling webpages with cURL with out post data just fine.

Edited by Thomas_L
remove url
Link to comment
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.