Guest User

Untitled

a guest
Oct 26th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. $url = 'https://pippinsplugins.com/edd-api/products';
  2.  
  3. $username = '*******************'; //This is not necessary for this API
  4.  
  5. $password = '****************'; //This is not necessary for this API
  6.  
  7. $headers = array( 'Authorization' => 'Basic ' . base64_encode( "$username:$password" ) ); //This is not necessary for this API
  8.  
  9. $request = wp_remote_get( $url, array( 'headers' => $headers ) );
  10.  
  11. if(is_wp_error($request)) {
  12. return false;
  13. }
  14.  
  15. $body = wp_remote_retrieve_body($request);
  16.  
  17. $data = json_decode($body);
Add Comment
Please, Sign In to add comment