how can i be able to sign in adobe app builder web action | Community
Skip to main content
Level 3
August 9, 2024
Question

how can i be able to sign in adobe app builder web action

  • August 9, 2024
  • 4 replies
  • 796 views
actions:
info:
function: actions/starter-kit-info/index.js
web: 'no'
runtime: nodejs:20
inputs:
LOG_LEVEL: debug
annotations:
require-adobe-auth: false
final: true
still getting sign in popup and what value it required

4 replies

EstebanBustamante
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
August 9, 2024

Hi, 

I am not sure I understand your question, but did you try using "aio login" command?

Esteban Bustamante
tmj
Adobe Employee
Adobe Employee
August 12, 2024

Hi @shubhamag2, The UI in the screenshot is not coming from us. Could you provide a larger screenshot? 

Also, if you need dedicated support on this, please log a support ticket through your regular channels. 

 

Thanks
Manik

Level 3
August 23, 2024

After running the command Aio app run, I get a local https url when I try to open that url I get this pop-up

September 25, 2025

Well if i'm correct , when your web:"no" then your public Url is not accessible and when you try to use it through another action then "it still doesn't work " , and your require-adobe-authfalse that means there is no security , it would be great if explain what you really want to do here ....I might not be able to understand this question properly

 

tmj
Adobe Employee
Adobe Employee
October 14, 2025

Please raise a support case for us to help you.

AmitVishwakarma
Community Advisor
Community Advisor
March 5, 2026

Hi ​@ShubhamAg2 ,

That “sign in” dialog is not coming from your YAML settings, it’s your browser doing HTTP basic auth against the Runtime endpoint.

Two key points:

  • web: 'no' makes this a non‑web action. Non‑web actions are not meant to be opened directly in the browser; Runtime protects them with basic auth and expects namespace credentials.
  • require-adobe-auth: false only affects web actions; it does not remove that basic auth challenge for web: 'no' actions.

So:

  • If you want to hit the action via a URL / browser, change it to a web action:
    actions:
    info:
    function: actions/starter-kit-info/index.js
    web: 'yes'
    runtime: nodejs:20
    annotations:
    require-adobe-auth: false

    redeploy and then call the web URL (no IMS login required).

  • If you keep web: 'no', invoke it only via CLI or other actions:

    aio rt action invoke <package>/info -r

    and don’t open the action URL directly in the browser.

Amit Vishwakarma - Adobe Commerce Champion 2025 | 16x Adobe certified | 4x Adobe SME