Jump to content

Tripodkid

New Members
  • Posts

    9
  • Joined

  • Last visited

Tripodkid's Achievements

Newbie

Newbie (1/5)

0

Reputation

1

Community Answers

  1. Hi there! I’m building a WordPress site which connects to remote server to populate iframes on various pages of my site. My site connects to the remote server using a PHP code snippet. The code was working but now $curl stopped working and echos Resource id #34. I am not aware of any changes to my site and I have tried identifying the culprit by deactivating my plugins without success. Furthermore, my webhost doesn’t seem to have much of an idea about the cause and there doesn’t seem to be much info on the web. var_export($response); returns "false" var_export($err); returns '' Any help would be really appreciated! Thanks in advance! My code is below: $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => "https://api.domo.com/oauth/token? grant_type=client_credentials&scope=data%20user%20dashboard", CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 30, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => "GET", CURLOPT_POSTFIELDS => "", CURLOPT_HTTPAUTH => CURLAUTH_BASIC, CURLOPT_USERPWD => "$clientid:$secret" )); $response = curl_exec($curl); $err = curl_error($curl); var_export($response); var_export($err); curl_close($curl);
  2. Bingo! Thanks so much for your help! Originally my code was api but then the vender sent me this screen shot, hence app!
  3. But I'm using https, no? curl_setopt($ch, CURLOPT_URL, "https://app.getfeedback.com/surveys/1093727/responses");
  4. Thanks kicken! I added 'Accept: application/json' to the header so my code is now <?php $headers = array( 'Accept: application/json', 'Authorization: Bearer abc123' ); $ch = curl_init(); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); curl_setopt($ch, CURLOPT_URL, "https://app.getfeedback.com/surveys/1093727/responses"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($ch); curl_close($ch); var_dump(json_decode($response, true)); echo htmlspecialchars($response); ?> But $response is still outputting html and var_dump is still outputting NULL, I guess because there is no JSON in $response. What am I missing here 🤔? Thanks again for your help!
  5. Thanks so much kicken! When I use it gives me html code but not the JSON survey data I'm looking for. I really appreciate your help and input!
  6. Great question! If I try to output the array by foreach($response as $response){ echo $response; } or print_r($response); The entire page is redirected to a getfeedback.com login page. But if I echo individual elements of the array I can see it is an HTML page like you suspected. echo $response[0] = < echo $response[1] = ! echo $response[2] = d etc. So may question is how do I access the entire array so I can start using the data? Thanks!
  7. Thanks requinix that helped a lot. BTW the Bearer token posted is not mine but the one shown in the link I shared in my earlier post 😀! The problem I have now is that my code is returning a NULL value. Any further help would be much appreciated! <?php $headers = array( 'Authorization: Bearer abc123', ); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://app.getfeedback.com/surveys/1093727/responses"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($ch); curl_close($ch); var_dump(json_decode($response, true)); ?>
  8. Thanks requinix! The documentation from the vendor states "GET /surveys/:survey_id/responses HTTP/1.1" Please see here https://www.getfeedback.com/api/v1/#overview I have sent them an email to confirm. Here is my code that generates this error "500 Internal Server Error If you are the administrator of this website, then please read this web application's log file and/or the web server's log file to find out what went wrong." <?php $headers = array( 'GET /surveys/:survey_id/responses HTTP/1.1', 'Authorization: Bearer TOKENHERE', 'Content-Type: application/json' ); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://api.getfeedback.com"); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, "key=value"); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); $response = curl_exec($ch); curl_close($ch); ?> Thanks again for your help! Chris
  9. Hi everyone! I could really use some help getting JSON data from a remote server using PHP. I am fairly familiar with PHP and often use it to pass form data to MySQL and other simple tasks but I've never used it to send headers or use cURL. Please could you send me a code example showing how to get the data so at least I have a starting point Because, even after extensive web searches and reading O'reilly's Intro to JSON, I still don't know where to begin😵. I have the following info to make the connection: api.myurl.com GET surveys/:survey_id/responses HTTP/1.1 Authorization: Bearer xxx Content-Type: application/json Many Thx! Chris 😀!
×
×
  • 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.