Getting Started
API Client
Inspect Traffic
HTTP Rules (Modify Traffic)
Redirect URL (Map Local, Map Remote)
Replace Strings (Switch Hosts, API Endpoints)
Import Setting from Charles Proxy
Mock Server
File Server
Sessions
Map Local feature lets you to serve any local file as the response of an intercepted request in Realtime. You can make changes in the file locally and test them live without updating them on the server. when a request is made to a URL that matches a defined rule, Requestly intercepts the request and serves the specified local file as the response to the client, just as if it was the normal remote response. Making it ideal for testing different scenarios.
<aside> 💡 ℹ️ INFO This feature is only available in Desktop App. ****Download
</aside>
You can use the Redirect rule to map a request to a local file. This redirects the request to the local file, causing it to be served in response to that request.
In this example we'll create a rule, by utilizing Requestly's map local feature, we'll try to hit an external API endpoint which will intercept and redierct this request to the local file which we will be served as a respone to the client instead of what was intended from the production server.
Consider this as the content of local file :
{
"success": {
"status": "success",
"data": {
"name": "John Doe",
"age": 30,
"email": "john.doe@example.com"
}
},
"error": {
"status": "error",
"message": "Failed to retrieve data"
},
"timeout": {
"status": "timeout",
"message": "Request timed out"
}
}
Local file
Note The local file to which you want to redirect the request to, must be present in your local machine.