Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. $header = [
  2. "Authorization: Basic example_encoded_data",
  3. "Content-Type: application/json",
  4. ];
  5. $ch = curl_init();
  6. curl_setopt($ch,CURLOPT_URL,$url);
  7. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
  8. curl_setopt($ch, CURLOPT_HEADER, $header);
  9. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  10. curl_setopt($ch, CURLOPT_TIMEOUT, 30);
  11. curl_setopt($ch,CURLOPT_HTTP_VERSION,CURL_HTTP_VERSION_1_1);
  12. $result = curl_exec($ch);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement