You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Set up your route to use the custom key. The param you pass must be the same name as the key you set in the configuration in `signed-requests.php`
113
+
114
+
```php
115
+
Route::get('/fire', function () {
116
+
return "You'll only see this if the signature of the request is valid!";
117
+
})->middleware('verify-signature:custom');
118
+
```
119
+
75
120
### Signing Postman Requests
76
121
77
122
If you, like us, like to use [postman](https://www.getpostman.com/) to share your api internally you can use the following pre-request script to automatically sign your postman requests:
0 commit comments