baseUrl; // $username = $apiEndpointsConfig->clientCredentials['username']; // $password = $apiEndpointsConfig->clientCredentials['password']; $client = new HTTPClient(); $baseUrl = "http://10.20.30.26:8000/api/v1/profile"; $headers = array(); $headers[] = 'X-Devicetoken: '; $headers[] = 'X-Float-Device-Location-Latitude: 0'; $headers[] = "Authorization: Token {$token}"; $headers[] = 'Content-Type: application/json'; $headers[] = 'Accept: application/json, text/plain, */*'; $headers[] = 'X-Float-Device-Location-Longitude: 0'; $headers[] = 'Referer: http://10.0.0.252:8100/'; $headers[] = 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36'; $headers[] = 'X-Session-Id: '; $response = $client->request( 'POST', "{$baseUrl}/login", [ 'headers' => $headers, 'body' => json_encode( ["username"=>"test@float.sg", "password"=>"111111", "sessionid"=>"DUMMYSESSION"] ) ] ); //$response = json_decode($response->getBody(), true); return $response; } }