-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
expose backend with authenticationType basic
- Loading branch information
1 parent
5ba0d57
commit 2c7f8f8
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
### | ||
GET {{$dotenv approuter_url}}/sap_basic_auth/bc/ping | ||
Authorization: Basic {{$dotenv username}}:{{$dotenv password}} | ||
### | ||
GET {{$dotenv approuter_url}}/sap_basic_auth/opu/odata/SAP/EPM_REF_APPS_SHOP_SRV/ | ||
Authorization: Basic {{$dotenv username}}:{{$dotenv password}} | ||
Accept: application/json | ||
### | ||
GET {{$dotenv approuter_url}}/sap_basic_auth/opu/odata/SAP/EPM_REF_APPS_SHOP_SRV/MainCategories | ||
Authorization: Basic {{$dotenv username}}:{{$dotenv password}} | ||
Accept: application/json | ||
### | ||
GET {{$dotenv approuter_url}}/sap_basic_auth/opu/odata/SAP/EPM_REF_APPS_SHOP_SRV/Products | ||
?$top=10 | ||
&$inlinecount=allpages | ||
&$filter=MainCategoryId eq 'Meeting %26 Presenting' | ||
&$orderby=StockQuantity desc | ||
Authorization: Basic {{$dotenv username}}:{{$dotenv password}} | ||
Accept: application/json |