laravel-shopify | Make requests to the Shopify API from your Laravel app | REST library
kandi X-RAY | laravel-shopify Summary
kandi X-RAY | laravel-shopify Summary
Make requests to the Shopify API from your Laravel app
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
- Handle the webhook event .
- Set an inventory level .
- Returns the fulfilled fulfillment order items .
- Create instance from config .
- Create a new redirect .
- Get count of custom collections .
- Open an order resource .
- Get the basket balance .
- Transform an array of items .
- Search for customers .
laravel-shopify Key Features
laravel-shopify Examples and Code Snippets
Community Discussions
Trending Discussions on laravel-shopify
QUESTION
Expected HTTP 401 (Unauthorized), but got HTTP 405 from shop-redact. Your app's HTTPS webhook endpoints must validate the HMAC digest of each request, and return an
HTTP 401 (Unauthorized)
response when rejecting a request that has an invalid digest.
I have used osiset/laravel-shopify
package
I have solved this error. Even though one app has been approved, the other app has the same solution in front of it, I still get this error from Shopify in the other app.
First I tried this solution in which the app was rejected. But I applied the same solution in the first app, which was approved
...
ANSWER
Answered 2022-Apr-01 at 12:19Shopify webhooks make POST request to your endpoint so set post request
QUESTION
I have created Shopify public App using osiset/laravel-shopify package. https://github.com/osiset/laravel-shopify
This app is working fine, also app is published on the Shopify App Store.
but recently I got errors of [API] Invalid API key or access token (unrecognized login or wrong password)
in each Shopify API call.
"laravel/framework": "^8.12"
"osiset/laravel-shopify": "^17.0",
This is happening for all stores which are using this app.
Temp Solution for me.- whenever API failed & got this error that time we update App from the store by the given URL.
"https://shop.myshopify.com/admin/oauth/authorize/?client_id=xxxxxxxxxx&redirect_uri=https://shopify-app.com/authenticate&scope=read_products,write_products,read_orders,write_orders,read_customers,write_customers,read_merchant_managed_fulfillment_orders,write_merchant_managed_fulfillment_orders,read_inventory&grant_options[]=per-user"
one another option
- set an empty password in the user's table in the database.
After doing this App working fine for the next 2-3 days. after 2-3 days again get these problems & fix them by updating the app from the store.
I'm not sure why & when this happens.
Failure LogsResponse of Failed Shopify Rest API.
...ANSWER
Answered 2021-Dec-27 at 05:29In local, you can try ngrok for URLs. https://ngrok.com/docs
QUESTION
I want to apply usage charges from the Job file. I have referred to this documentation, but I can't find a way to run this URL from the job file.
...ANSWER
Answered 2021-Dec-30 at 10:05This documentation helps you to display a payment view to the user. You can't produce a view in a Job and display it to the user, because Jobs are run in background.
You will need to execute this code in a Controller method.
Otherwise, if you need to have it in a Job, you will need to charge the user using differently (using an Intent for instance).
QUESTION
I am Trying to Create My First Shopify App Using Laravel, But I am Stuck in this error.
...ANSWER
Answered 2021-Jul-27 at 18:06As per this issue https://github.com/osiset/laravel-shopify/issues/503
auth.shopify
is the v11+
package middleware.
If you are using v10
then its auth.shop
As per latest Release https://github.com/osiset/laravel-shopify/releases/tag/v17.0.0
Removal of auth.shopify middleware in-favour of verify.shopify middleware
So you should use verify.shopify
instead of auth.shop
Also as per documentation https://github.com/osiset/laravel-shopify/wiki/Installation#middlewares
verify.shopify, handles authentication of the shop, verification, and session token handling for both standard requests and AJAX. auth.webhook, handles verification of webhooks and their data. auth.proxy, handles verification of proxy requests.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install laravel-shopify
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page