What's new

Spotigen auto create src

fjgtickhfkyglulugivh

Forum Master
Elite
Joined
May 20, 2021
Posts
6,800
Solutions
4
Reaction
31,736
Points
5,376
Code:
<?php
$bam = (rand());
echo $bam;
$url = "https://spclient.wg.spotify.com/signup/public/v2/account/create";

$curl = curl_init($url);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);

$headers = array(
   "client-token: AAAv70Ie4YvtFZuo7hRKVbmr4vsdb1MmJmgIlD8x+3u9X/L/QjhtAC4CLh7j6SqVEgr6ZZ33NnwZCrYAfsxk8L29zw/jdo7eFF74QlyO8l7mpCGf0PqH61GEdMgTfYxs+SXlgr9mb/7Tk7LNDtrKywiMLwpO1wJNumeFstbgIPCBORmCZd0WZxV0gdDyCp414/3vrrI5YZOGUDccDZ+AvIpSUvtoWS5Zm14RziADEfWMMvFA0H6iv1RP1oUHFMInZknOaTXGSNPWeU/EyTQEwEHBYzyvi2iNdd3Z6nhTjTdSfgtM2/Tf/Zb0F6Ja",
   "accept-language: en-US",
   "user-agent: Spotify/8.7.54.403 Android/30 (SM-F7110)",
   "spotify-app-version: 8.7.54.403",
   "x-client-id: 9a8d2f0ce77a4e248bb71fefcb557637",
   "app-platform: Android",
   "Content-Type: application/json",

);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);

$data = '{"account_details":{"birthdate":"2000-07-25","consent_flags":{"eula_agreed":true,"send_email":true,"third_party_email":false},"display_name":"jgj nbmnbb","email_and_password_identifier":{"email":"'.$bam.'@phtunneler.com","password":"'.$bam.'"},"gender":1},"callback_uri":"https://www.spotify.com/signup/challenge?forward_url\u003dhttps%3A%2F%2Fopen.spotify.com%2F__noul__%2F%23menu\u0026locale\u003dph-en","client_info":{"api_key":"142b583129b2df829de3656f9eb484e6","app_version":"v2","capabilities":[1],"installation_id":"c9d54942-47a0-44e5-ae7c-3845445c449a","platform":"www"},"tracking":{"creation_flow":"","creation_point":"https://www.spotify.com/ph-en/","referrer":""}}';

curl_setopt($curl, CURLOPT_POSTFIELDS, $data);

//for debug only!
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);

$resp = curl_exec($curl);
curl_close($curl);

var_dump($resp);
 

Similar threads

Back
Top