- Deschizi chrome dev tools
- Faci orice operațiune ajax în UI 2performant
- te duci în tab-ul network
- click 2 -> copy -> fetch (atenție, să fie headerele ce includ și adresa de mail)
- copiezi tot ce este în
header
în INSERT_HEADERS_HERE
- Posibil să fie nevoie să ajustezi
page=1&perpage=100
- Paste la tot în consolă.
const HEADERS = {
"accept": "application/json, text/plain, */*",
"accept-language": "en-US,en;q=0.9,ro-RO;q=0.8,ro;q=0.7",
"access-token": "zzzz",
"cache-control": "no-cache",
"client": "zzzz",
"expiry": "1585929920",
"if-modified-since": "Mon, 26 Jul 1997 05:00:00 GMT",
"pragma": "no-cache",
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-site",
"token-type": "Bearer",
"uid": "email sau user"
}
fetch("https://api.2performant.com/affiliate/programs.json?filter%5Bcountry%5D=where_I_promote&filter%5Brelation%5D=accepted&noFilter=false&noSort=true&page=1&perpage=100", {
....