You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by "IvanHernanzC (via GitHub)" <gi...@apache.org> on 2023/06/21 16:02:59 UTC

[GitHub] [superset] IvanHernanzC commented on issue #24472: Error embebed dashboard https://xxx:443 "GET /api/v1/security/guest_token/ HTTP/1.1" 405 271

IvanHernanzC commented on issue #24472:
URL: https://github.com/apache/superset/issues/24472#issuecomment-1601116207

   From postman call: https:/xxxx.com/api/v1/security/guest_token/ with barear token ..
   
   Return:
   {
       "errors": [
           {
               "message": "405 Method Not Allowed: The method is not allowed for the requested URL.",
               "error_type": "GENERIC_BACKEND_ERROR",
               "level": "error",
               "extra": {
                   "issue_codes": [
                       {
                           "code": 1011,
                           "message": "Issue 1011 - Superset encountered an unexpected error."
                       }
                   ]
               }
           }
       ]
   }
   
   
   And, the nginx configuration is:
   
   server {
       listen 443 ssl;
       server_name xxxx.com;
   
       ssl_certificate /etc/letsencrypt/live/kpis.kulteo.com/fullchain.pem;
       ssl_certificate_key /etc/letsencrypt/live/kpis.kulteo.com/privkey.pem;
   
       location / {
           proxy_pass http://superset:8088;
           proxy_set_header Host $host;
           proxy_set_header X-Real-IP $remote_addr;
           proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
       }
   }
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org