Hello,
I have a workflow that I want to implement but currently I’m not sure how. I have two applications that integrate into infusionsoft but they are both using one client id and client secret. One of the applications (we’ll call it demo) has to stay constantly logged in so I logged in the first time, generated the access and refresh token, saved those to a database, and whenever I make a call from the front end I pull that information from the database for the infusionsoft calls. Now I’m making a new application (we will call it lite) that when a user clicks to authorize, they sign in with their own information, and using the same client id and client secret receive another access and refresh token then get redirected to another website (react front end) with their token information in the url that I parse to create their key. When they make an infusionsoft request I do a javascript post to the lite site and construct their key with the information that the react front end has. This doesn’t seem to be working and I was wondering if it is because each user can only have one access token and refresh token so since I’m authorizing for the demo site I can’t use another access token for the lite site, OR only one access and refresh token can be issued per application and I need to just pull that same information from the same database for the lite site? I know that’s complex but this is the best place I could think of to ask a question like this, any help would be really appreciated, thanks.