cURL code to unfollow instagram unfollowers cURL code to unfollow instagram unfollowers curl curl

cURL code to unfollow instagram unfollowers


Please check my below code and check it's work or not

public function PostUnFollow($user_id,$username) {    $device_id = "android-".$this->guid;    $data = '{"device_id":"'.$device_id.'","guid":"'. $this->guid .'","uid":"'.$this->my_uid.'","module_name":"feed_timeline","user_id":"'.$user_id.'","source_type":"5","filter_type":"0","extra":"{}","Content-Type":"application/x-www-form-urlencoded; charset=UTF-8"}';       $sig = $this->GenerateSignature($data);    $new_data = 'signed_body='.$sig.'.'.urlencode($data).'&ig_sig_key_version=6';    return $this->Request('friendships/destroy/'.$user_id.'/', true, $new_data, true,$username);  }