I have a BRX and training on different external API services. Not all services are relevant for industrial automation but I would like to get more confident with integrating towards different REST API services.
I have been reading and parsing successfully from e.g. OpenWeatherMap (with token) and Sunrise-Sunset (without token). Now I am trying out some APIs I found on publicapis.dev and in some cases I get an HTML response "301 Moved Permanently". This was the case with Strava (yes we will have beacons notifying about lack of our training

). Is there a way around this 301 response?
Strava tells me the CURL request should be as follows:
curl -X GET \
https://www.strava.com/api/v3/athlete \
-H 'Authorization: Bearer YOURACCESSTOKEN'
This works in Postman but not in my PLC. Am I setting up the additional header correctly in the attached image?