step flow:
client send :127.0.0.1:8000/api/v1/oauth/authorize? client_id=01969be6-c24b-737c-bc43-74b42ac117ed redirect_uri= response_type=code scope= code_challenge=WXjHDjrK8S9baMqKa8jQ7Ag1YKl56Qik2HbQoQKRUaA code_challenge_method=S256 user_id=1
server : if client exist return authorize_code (my problem this section)
client get authorize_code and show form for client
client set name,pass,code_verifier and send it to server
server check client and return access and refresh token
my problem is step 2 . how to generate authorize_code with laravel/passport without oauth/authorize route and not generate manualy and save db , use passport oauth/authorize route in server Do you think there is a solution?