Hi, and thanks for your work with this API!
I'm trying to build a small application and, bear with me, since I'm a total back-end newbie I'm having a hard time figuring out how to get through CORS issues.
Basically, I can correctly obtain my JWT via the claim API; but, when I use that JWT in my front-end, I always hit the CORS roadblock:
Access to XMLHttpRequest at 'https://trefle.io/api/v1/plants/search?token=<token>&q=mint' (redirected from 'http://trefle.io/api/v1/plants/search?token=<token>&q=mint') from origin 'http://localhost:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
I'm also referencing an existing comment because it describes my case:
I have the same issue but when calling the API from the client side with a fresh JWT token using Fetch:
fetch(`https://trefle.io/api/plants?q=rosemary?token=${JWT_TOKEN}`);
Results in:
Access to fetch at 'https://trefle.io/api/plants?q=rosemary?token={JWT_TOKEN}' from origin
'http://localhost:8080' has been blocked by CORS policy: No 'Access-Control-Allow-Origin'
header is present on the requested resource. If an opaque response serves your needs,
set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
I tried fetching passing options, even with mode: 'no-cors', but returns a 401:
fetch(`https://trefle.io/api/plants?q=${query}?token=${JWT_TOKEN}`,
{
method: 'GET',
'Content-Type': 'application/json',
'Access-Control-Allow-Origin': '*',
}
);
Originally posted by @lewislbr in #23 (comment)
I'm totally out of ideas and unable to use your awesome API. Hope you can help.
Thanks!
PS
Sorry if I'm not using the issue template, I don't think this request fits in the categories.
Hi, and thanks for your work with this API!
I'm trying to build a small application and, bear with me, since I'm a total back-end newbie I'm having a hard time figuring out how to get through CORS issues.
Basically, I can correctly obtain my JWT via the claim API; but, when I use that JWT in my front-end, I always hit the CORS roadblock:
I'm also referencing an existing comment because it describes my case:
Originally posted by @lewislbr in #23 (comment)
I'm totally out of ideas and unable to use your awesome API. Hope you can help.
Thanks!
PS
Sorry if I'm not using the issue template, I don't think this request fits in the categories.