Hello, I'm a newbie to nodered and I'm trying to use the HTTP in node to read the URL parameter of an external URL sent me by a service. the problem is that in the URL that I receive there is not a ? as for parameter but there is an (#)
thanks for the quick answer. what i'm trying to do is to make an authentication to a provider using OAuth2.0 flow. if i use the response_type = code i need to make another call to the server, where if i set the response_type = token i got back the token with one call
so i would like avoiding to make 2 calls to get the token
any hints?
If it is really sending you what you say, I think the full URL is in the response object somewhere, you will need to wade through the object to see where it is, I can never remember. Once you have it as a string, you can easily pull it apart and put the token into a header which is probably where it is needed for the next step I would think.