We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am building a shopify app using Laravel signifly pacakge
and by using that I have write following code to get access token:
https://{$shopDomain}/admin/oauth/authorize?client_id=" . env('SHOPIFY_API_KEY') . "&scope=read_products,write_products&redirect_uri=" . route('shopify.callback')); } and callback url returns : $code = $request->input('code'); // Get access token from Shopify $response = Http::post("https://{$shop}/admin/oauth/access_token", [ 'client_id' => env('SHOPIFY_API_KEY'), 'client_secret' => env('SHOPIFY_API_SECRET'), 'code' => $code, ]);
Its working fine to get required products, orders and customers etc. But shopify need to use oAuth process.
Let me know what is wrong here in my code and need to be updated
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am building a shopify app using Laravel signifly pacakge
and by using that I have write following code to get access token:
Its working fine to get required products, orders and customers etc. But shopify need to use oAuth process.
Let me know what is wrong here in my code and need to be updated
The text was updated successfully, but these errors were encountered: