File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 11###
22GET {{$dotenv approuter_url }}/sap_basic_auth/bc/ping
33Authorization: Basic {{$dotenv username}}:{{$dotenv password}}
4+ ### dynamicIdentityProvider = true seems not to apply for routes with basic auth
5+ GET {{$dotenv approuter_url }}/sap_basic_auth_dyn_idp/bc/ping?sap_idp=sap.custom
6+ Authorization: Basic {{$dotenv username_ias}}:{{$dotenv password_ias}}
7+ ### login_hint also does not work for routes with basic auth
8+ GET {{$dotenv approuter_url }}/sap_basic_auth/bc/ping?login_hint=%7B%22origin%22%3A%22sap.custom%22%7D
9+ Authorization: Basic {{$dotenv username_ias}}:{{$dotenv password_ias}}
10+ ### Routes with basic auth only authenticate via the custom IDP when the security settings where changed
11+ ### according to SAP Note: https://me.sap.com/notes/3042924
12+ ### 3042924 - How to change the default identity provider for password grant flow on Cloud Foundry
13+ ### Use the script:
14+ ### https://github.com/gregorwolf/bookshop-demo/blob/main/tests/xsuaa-configure.http#L28
15+ ###
16+ GET {{$dotenv approuter_url }}/sap_basic_auth/bc/ping
17+ Authorization: Basic {{$dotenv username_ias}}:{{$dotenv password_ias}}
418###
519GET {{$dotenv approuter_url }}/sap_basic_auth/opu/odata/SAP/EPM_REF_APPS_SHOP_SRV/
620Authorization: Basic {{$dotenv username}}:{{$dotenv password}}
You can’t perform that action at this time.
0 commit comments