Skip to content

Instantly share code, notes, and snippets.

View mohtada-h's full-sized avatar

Mohtada Hassanpour mohtada-h

View GitHub Profile
(async function () {
const token = JSON.parse(localStorage.getItem('user')).token;
const headers = new Headers();
const url = 'https://web-api.snapp.ir/api/v1/ride/history';
const query = '?page=';
let total = 0;
let page = 1;
headers.append('Authorization', token);
headers.append('Content-Type', 'application/json');