METHOD zif_abapgit_exit~http_client. | |
DATA: lv_ticket TYPE text4096, | |
ls_bapiret2 TYPE bapiret2. | |
* Or create RFC calling function module CREATE_RFC_REENTRANCE_TICKET | |
CALL FUNCTION '/PLMI/EASYDMS_CREATE_SSOTICKET' | |
DESTINATION 'SOMETHING' | |
IMPORTING | |
ev_ticket = lv_ticket | |
es_return = ls_bapiret2 | |
EXCEPTIONS | |
system_failure = 1 | |
communication_failure = 2 | |
resource_failure = 3. | |
IF sy-subrc = 0. | |
ii_client->request->set_header_field( | |
name = 'MYSAPSSO2' | |
value = CONV #( lv_ticket ) ). | |
ENDIF. | |
ENDMETHOD. |
This comment has been minimized.
This comment has been minimized.
above code is for SAP reentrance tickets, not related to oauth, I don't have experience setting up oauth |
This comment has been minimized.
This comment has been minimized.
Hi Larshp, Nikhil Thanks & Regards, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Hi @larshp I have created a Oauth Client in ABAP which retrieves bearer tokens and refresh tokens from AZURE AD. Since our Azure Devops VSTS Repos are protected we have to authenticate each connection call. Our organization don't want to create PAT to login and they want to use SSO for that. Here comes the use of Oauth client, Can you please point me where can i modify the code, so that instead of asking user id and paswword, abapGit should set the token in http_client call and directly makes call with bearer tokens. Also if bearer token fails then i should be able to use refresh_flow to get new token with refresh token.
