-
Notifications
You must be signed in to change notification settings - Fork 170
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
I need to pass a token authorization (bearer). #322
Comments
Before setting the image galleries, make an explicit get request for each image that you would need, and then create an objectUrl with the response. For example (didn't tested this, but you can get an idea): In a service:
In the component:
|
@german-e-mas thanks. I will test. |
If they are different, yes. You can group the requests and then access them with a |
friend I tried to do as you indicated ... but see how it turned out ... In the requests all are in status 200 and there is no error in the console. detail .. I took the log of the imageUrl variable and in google chrome opened the image |
Up? |
@german-e-mas usted |
I cannot know without more insight on the code. Have you tried the gallery using public images that don't require an authorization token? If that works, and your request to the image also works, then the issue could lie on how you connect the images you get to the gallery. |
@german-e-mas yes they work .. the problem is when I try to put access permission with token only. |
https://stackblitz.com/edit/angular-ivy-amefyb?file=src%2Fapp%2Fapp.component.ts there is the problem. I have a blob service return. And adding to galleryImages I can't see the image. |
The solution worked for me on |
okay .. it’s almost the same thing… i thought you could help me .. thanks. |
https://stackblitz.com/edit/angular-ivy-vh6e2u?file=src%2Fapp%2Fapp.component.ts
instead of reader.onloadend = function (){} make it reader.onload = e => {} so that you can pass the base64 image data. |
|
create a jwt interceptor so that every API request you'll make, a token would be automatically put on the headers
|
the problem is that it got really slow |
could you elaborate "slow" |
Good Morning
this library is too much.
but I have found problems with the links
this.galleryImages.push (
{
small: https://xxxx,
medium: https://xxxx,
big: https://xxxx
}
);
this is because I need to pass a token authorization (bearer).
how can i solve this problem of mine?
appreciate
The text was updated successfully, but these errors were encountered: