We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 843223d commit 87b93fcCopy full SHA for 87b93fc
src/zcl_pacote.clas.abap
@@ -412,10 +412,10 @@ CLASS zcl_pacote IMPLEMENTATION.
412
iv_val = zif_http_agent=>c_content_type-json ).
413
ENDIF.
414
415
- DATA(host) = zcl_url=>parse( url )->components-host.
+ DATA(components) = zcl_url=>parse( url )->components.
416
417
" Get/set auth token
418
- DATA(auth) = zcl_http_login_manager=>get( host ).
+ DATA(auth) = zcl_http_login_manager=>get( components-host ).
419
420
IF auth IS NOT INITIAL.
421
result->global_headers( )->set(
0 commit comments