Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to access RocketLeague API using PHP? #83

Open
samjco opened this issue Dec 21, 2022 · 2 comments
Open

How to access RocketLeague API using PHP? #83

samjco opened this issue Dec 21, 2022 · 2 comments

Comments

@samjco
Copy link

samjco commented Dec 21, 2022

I have signup for the developer API on TRN site and received my KEY.

If I go here I can see the data in my browser:
https://api.tracker.gg/api/v2/rocket-league/standard/profile/epic/all4gaming

However....
I have tried using the following:

using a simple php function:
file_get_contents("https://api.tracker.gg/api/v2/rocket-league/standard/profile/epic/all4gaming");
Doesn't work or maybe there is a blocking

// Create a stream
$opts = array(
	'http'=>array(
		'method'=>"GET",
		"header" =>  "User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.102 Safari/537.36\r\n"
		. "TRN-Api-Key: XXXXX-XXXX-XXXXX\r\n" //My TRN KEY
		. "Accept: application/json\r\n"

	)
  );
  
$context = stream_context_create($opts);
echo file_get_contents("https://api.tracker.gg/api/v2/rocket-league/standard/profile/epic/all4gaming", false, $context);

Nothing doesnt seem to work. How can I get this working?

@xorth
Copy link

xorth commented Dec 21, 2022

#40
#35
#50
#54
#31
#10

You went to great lengths not to search for a solution.

@samjco
Copy link
Author

samjco commented Dec 21, 2022

@bladefist
Why am I able to access RL data from the browser but not able to access with code?
Seem that RL is blocking from a browser origin using Cloudflare.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants