Using OIDC to connect to Microsoft Entra ID

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Stevenrlp
    Junior Member
    • Apr 2026
    • 2

    #16
    Originally posted by Stevenrlp
    I have followed the instructions and it seems it does not work, does anyone happen to have any idea what the issue is? I get the normal company login prompt, username, then password, then 2FAA, then I get a Login Failed toast error at the top of the application. I am using the latest version of the app.
    I have checked the logs and I see repeated entries like: [2026-04-02 23:19:45] WARNING: OIDC: Token request error.; Status: 0; Response:

    EDIT: I have fixed it now, in case anyone else gets this issue.

    The problem was that I never configured the openssl correctly, I needed to add the cacert.pem file to my php/extras/ssl folder and update the php.ini file. After I made this change it worked.

    [curl]
    curl.cainfo = "C:\Program Files\PHP\v8.5.4\extras\ssl\cacert.pem"

    [openssl]
    openssl.cafile = "C:\Program Files\PHP\v8.5.4\extras\ssl\cacert.pem"

    Download the CA from here: https://curl.se/ca/cacert.pem
    Last edited by Stevenrlp; Today, 10:54 AM.

    Comment

    Working...