17
Views
3
Comments
Solved
How to make an output parameter for External Site O11?

Hello guys!

As the title, i want to ask you guys how to make an ouput data for External Site?
My url link will be like: ...../URL/id/token

this link should be a screen "URL" and i want to input both "id" and "token" to that screen

how can i do that?

Thank you guys!

2019-01-07 16-04-16
Siya
 
MVP
Solution

@Khoa Nguyen : If I understand you correctly you want to invoke an external URL ( ...../URL/id/token ) and "receive" the output from that URL. Functionality of RedirectToURL is to redirect and not to execute an external site and get the result. 

You may consider consuming the external site on the server side using REST-> Consume REST API or on the client side using JavaScript ( fetch(url).then();). 

btw providing a bit more context on what you are trying would help. 

2025-12-22 13-50-43
Sherif El-Habibi
Champion

Hello, 

I’m not sure there is an option to use a direct output parameter here. If you’re trying to extract query parameters, that’s possible with some manipulation, but producing a direct “output” like this, I do not think is possible.

2016-04-22 00-29-45
Nuno Reis
 
MVP

Hello.

What do you mean "output data"? You want to fill the input parameters of the external site?

A URL is nothing more than a string.

You can redirect to URL+"/"+id+"/"+jwt


2019-01-07 16-04-16
Siya
 
MVP
Solution

@Khoa Nguyen : If I understand you correctly you want to invoke an external URL ( ...../URL/id/token ) and "receive" the output from that URL. Functionality of RedirectToURL is to redirect and not to execute an external site and get the result. 

You may consider consuming the external site on the server side using REST-> Consume REST API or on the client side using JavaScript ( fetch(url).then();). 

btw providing a bit more context on what you are trying would help. 

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.