Questions tagged [fusionauth]

FusionAuth provides authentication, authorization, and user management for any app: deploy anywhere, integrate with anything, in minutes (https://fusionauth.io)

Questions, comments or issues regarding using FusionAuth or implementing FusionAuth (https://fusionauth.io)

145 questions
0
votes
1 answer

open identity provider directly with FusionAuth

Im trying to make a button in my app that takes the user directly to the IDP, instead of going from my app to my auth provider where the user has to pick an IDP and then goes to the IDP. I tried supplying the link with identityProviderId and the…
Bas
  • 103
  • 8
0
votes
1 answer

FusionAuth on Docker - Default login credentials

I am testing FusionAuth on Docker. FusionAuth container starts successfully and localhost:9011 shows a login page. What are the default credentials for authenticaiton? Spent sometime searching in the documentation, but couldn't find any mention…
Sudhir
  • 1,339
  • 2
  • 15
  • 36
0
votes
0 answers

Unable to expose fusionauth volumes in docker container to host machine

I was using docker compose suggested by fusionauth in their documentation(https://fusionauth.io/docs/v1/tech/installation-guide/docker). My compose file version: '3.1' services: postgres_db: container_name: postgres_db image:…
Manisha Bayya
  • 137
  • 1
  • 9
0
votes
1 answer

Fusion Auth /api/jwt/issue api not working as expected

I am calling /api/jwt/issue api to generate a new auth and refresh token for a user. I am not able to make the request from postman if the cookies are disabled. I always get a 401. I checked and I have the Authorization set in the headers. The API…
GGhangura
  • 31
  • 4
0
votes
2 answers

Node with Fusionauth passport-oauth OAuth2Strategy Error: Failed to obtain access token

I'm trying to authorize my node application via fusionauth with passport and express and I'm getting a node error from the fusionauth Callback "Failed to obtain access token" after login to fusionauth. I'm not sure why the fusionauth response…
Jay
  • 13
  • 2
0
votes
1 answer

Access fusionAuth-app UI from outside container (external access)?

I am using the following docker-compose.yml for deployment cloned from following https://fusionauth.io/docs/v1/tech/installation-guide/docker version: '3' services: db: image: postgres:9.6 environment: PGDATA:…
0
votes
0 answers

On successful password reset user stays on success status page

On successfull reset of the password from the forgot password email link, user stays at the success status screen. On successfull password reset, I would like to redirect the user to the fusion auth login page or to my application. One way I am…
Prateek Pandey
  • 833
  • 6
  • 19
0
votes
1 answer

How to generate tokens for mail verify or forgot password without FusionAuth sending mail?

Until yesterday I was using the default mechanism of sending mails like "verify mail" or "forgot password mail". These mails have specials tokens included inside the mail. Both of these endpoint also returns tokens in the response body. I am now…
Lechu67
  • 35
  • 5
0
votes
0 answers

Cannot connect Fusionauth service to Google Cloud SQL instance

I'm trying to set up fusionauth to run on GKE (kubernetes) and connect to a Cloud SQL Mysql instance for the DB. I have been able to successfully set up a GCE instance but when I try to migrate to GKE I am getting the following error in Maintenance…
0
votes
1 answer

FusionAuth sendSetPasswordEmail not sending Set Password Email when creating a user

I'm wanting to create a user without specifying the password and have FusionAuth send the Setup Password email. I'm using the PHP client library, and while I can create a user the email is not been sent. However manually dispatching a Reset Password…
jakehallas
  • 2,456
  • 1
  • 18
  • 26
0
votes
1 answer

Configure to get the opaque token from FustionAuth

When we authenticate user using FusionAuth, we are getting JWT token as the output. How to get the opaque token rather than JWT? If it can be done, will introspect use opaque token to validate the JWT token generated?
Hari
  • 73
  • 1
  • 8
0
votes
1 answer

FusionAuth Startup RejectedExecutionException

I am trying to create an instance of FA on my VPS and have been running into issues. For some reason, the application throws this error when trying to start after maintenance mode tries to start. I am using PostgreSQL; the user has all the needed…
0
votes
1 answer

FusionAuth incomplete reindex with AWS Elasticsearch

I am migrating from a self-hosted Elasticsearch FusionAuth search to an AWS Elasticsearch Service solution. I have a new FusionAuth app EC2 instance reading from the in-use database that is configured to use the new Elasticsearch service. On…
0
votes
1 answer

Docker - Update fusionauth to latest version

I have a question regarding the update of fusionauth if i use the docker container (fusionauth-app, auth-search, auth-db). I am actually using version 1.13.2 of the fusionauth app. But i have specified the @latest in docker compose fusionauth: …
Pico1184
  • 23
  • 5
0
votes
1 answer

FusionAuth Authorization

I am developing a Spring Boot REST API, this API exposes a "/verify" endpoint to validate the token and the access to a certain resource. In FusionAuth I have roles attached to my users. So is the a method to validate if the user has that role so i…