mirror of
https://github.com/foss42/apidash.git
synced 2025-05-17 06:16:41 +08:00
http options method on history provider
This commit is contained in:
@ -12,8 +12,8 @@ A List of API endpoints that can be used for testing API Dash
|
||||
#### For Testing HTTP PUT, PATCH, DELETE
|
||||
- https://reqres.in/
|
||||
|
||||
#### For Testing HTTP OPTIONS, TRACE
|
||||
- Use localhost servers, as TRACE and OPTIONS HTTP methods are not publicly available (used for diagnostic purposes)
|
||||
#### For Testing HTTP OPTIONS
|
||||
- https://reqbin.com/echo/options
|
||||
|
||||
#### For Testing sites with Bad Certificate
|
||||
- https://badssl.com/
|
||||
|
@ -44,4 +44,5 @@ const _$HTTPVerbEnumMap = {
|
||||
HTTPVerb.put: 'put',
|
||||
HTTPVerb.patch: 'patch',
|
||||
HTTPVerb.delete: 'delete',
|
||||
HTTPVerb.options: 'options',
|
||||
};
|
||||
|
@ -58,6 +58,7 @@ const _$HTTPVerbEnumMap = {
|
||||
HTTPVerb.put: 'put',
|
||||
HTTPVerb.patch: 'patch',
|
||||
HTTPVerb.delete: 'delete',
|
||||
HTTPVerb.options: 'options',
|
||||
};
|
||||
|
||||
const _$ContentTypeEnumMap = {
|
||||
|
Reference in New Issue
Block a user