Skip to content

Instantly share code, notes, and snippets.

View ZahidRasheed's full-sized avatar

Zahid Rasheed ZahidRasheed

View GitHub Profile
<?php
function getFallbackToken()
{
$date = new DateTime();
$date->add(new DateInterval('PT4H'));
echo $date->format('Y-m-d H:i:s');
$expires = $date->format(DateTime::ATOM);
$content = json_encode([
'expires' => $expires,