Hello,
I’m trying to get the bitrise.yml file from a python script.
using:
url = “https://app.bitrise.io/app/%s/bitrise.yml” % <my_application_slug>
headers = {
‘Authorization’: “token %s” % <token_value>
}
response = requests.get(url, headers=headers)
however response is always:
The page you were looking for doesn’t exist (404)
Message: Not Found
followed bitrise docs and can’t figure out why my response is always not found…
it happens for every application i have in my workspace.
Appreciate the help !