@pradip_Kondalkar, I’m not sure what you’re asking, exactly? The process for generating an access token is laid out in the Authentication guide. Is there a particular part of the flow that is causing you problems?
yes when i try to make request for access code it redirect to sign in page but doesn’t go further
please help me with getting access code of access-token
This is actually a very common place to get “stuck”. You’re thinking that you’re going to get the api access token on the front end but OAuth doesn’t work that way. You first have to get an authorization token which gives you permission to request an access token…this is why the login screen is there, so that anyone giving authorization to an app can be proven as authorized to do so by logging in…you then are given the auth token which you must then use to request your access/refresh token pair…it is with the access token that you can make api requests with, not the auth token. I’ll provide a video I created to help people with understanding how OAuth works with Infusionsoft to help you along the way
We don’t require you to whitelist the redrect_uri, so it is not an option in the portal right now to provide it. You can send in whatever redirect_uri as a query param in the initial authorization request that you like.