PHP Classes

File: jwtclient_example.php

Recommend this page to a friend!
  Classes of andy honeycutt   PHP JWT Library API Base   jwtclient_example.php   Download  
File: jwtclient_example.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP JWT Library API Base
Send authenticated API requests using JWT
Author: By
Last change:
Date: 6 years ago
Size: 584 bytes
 

Contents

Class file image Download
<?php
require_once("class.jwtapibase.php");

$url = 'http://api.somewhere.in.the.universe.com/';
$username = 'myUsername';
$password = 'myPassword';

$client = new JWTApiBase($url, $username, $password);


// Perhaps we want to update the email address of user at 1234
$data = json_encode(array(
 
'id' => '1234',
 
'email_address' => 'me@andyhoneycutt.com'
));

// append the endpoint "user/" to our client base url, send our data to it
$response = $client->apiRequest($data, $client->getUrl('user/'));

// print out the repsonse
print_r($response);
print_r(json_decode($response));