Using Proxies
Using Proxies in Shopranos to Call External URLs
Benefits of Using a Proxy
1.
The proxy acts as an intermediary, making the external call server-side through Shopranos. This bypasses any cross-origin restrictions, allowing your frontend to operate smoothly.
2.
You can securely inject sensitive information, like API keys, into the proxy configuration. This ensures that the frontend never directly handles or exposes this data.
3.
Proxies can be configured to make authenticated calls, adhering to Shopranos' authorization rules and permissions. This ensures that only authorized users can make specific API calls.
4.
Use JavaScript to modify requests before they are sent or to transform responses before they reach the frontend. This allows for customized data handling to fit your needs.
How to Set Up a Proxy
1.
In the proxy settings, specify the external URL that you want the proxy to call.
2.
Add any necessary headers or parameters, such as API keys, to be included in the request.
3.
Set up the proxy to require Shopranos authentication if needed, and define the necessary permissions for the call.
4.
Implement custom JavaScript to transform the request or response. This can include formatting data, adding/removing fields, or any other necessary adjustments. View More
Example Scenarios
If your frontend needs to call an external API that does not allow cross-origin requests, the proxy will handle the request server-side, avoiding CORS issues.
Instead of exposing your API key in the frontend, you can securely inject it into the proxy request. This keeps your API key hidden from users.
Ensure that only authenticated users with the correct permissions can make certain API calls by configuring the proxy with Shopranos authorization.
How It Works
1.
Define the external URL, and configure the necessary headers, parameters, and authentication.
2.
Shopranos will provide you with a custom URL that you can use in your frontend code, pointing to the proxy you've created.
3.
Instead of calling the external URL directly, your frontend will call the Shopranos-generated URL. This avoids CORS issues and keeps sensitive information secure.
4.
The Shopranos platform processes the request, applies any necessary transformations or injections, and forwards the call to the external URL.
5.
The response from the external service is returned to Shopranos, where it can be further processed or transformed before being sent back to your frontend.
Example Flow
https://your-shopranos-url.com/proxy-endpoint
https://api.external-service.com/resource
Benefits Recap
Modified at 2024-08-26 09:45:55