You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"We’ve made a change to our API that hardens requirements on the headers you send. You now must provide a User-Agent header and an Accept header.
Your User-Agent header should reflect the name and version of your application, e.g. MtgExampleApp/1.1. Do not allow HTTP libraries to choose the header for you. If you are connecting with browser-based JavaScript, do not change the browser User-Agent.
The Accept header must be present, but you can provide a generic preference. For example, both of these are okay: Accept: */* and Accept: application/json;q=0.9,*/*;q=0.8."
The text was updated successfully, but these errors were encountered:
Not sure if this affects the execution of the app, just wanted to raise attention to this new change.
https://scryfall.com/blog/user-agent-and-accept-header-now-required-on-the-api-225
"We’ve made a change to our API that hardens requirements on the headers you send. You now must provide a
User-Agent
header and anAccept
header.Your User-Agent header should reflect the name and version of your application, e.g.
MtgExampleApp/1.1
. Do not allow HTTP libraries to choose the header for you. If you are connecting with browser-based JavaScript, do not change the browser User-Agent.The
Accept
header must be present, but you can provide a generic preference. For example, both of these are okay:Accept: */*
andAccept: application/json;q=0.9,*/*;q=0.8
."The text was updated successfully, but these errors were encountered: