Magento 2 API Integration Issue [closed]Oauth Error while extending Magento Rest APIHow do I get an access token with OAuth?What is a Magento 2 “Web API Integration”Magento 2: Successful oAuth/Integration FlowMagento 2.2 REST API Add Item to cart issueMagento 2 : Cannot Use REST APIoauth/token/request not getting parameter from thirdparty applicationMagento 2 token integration errorMagento 2 rest API - How to Manage API Authentication Lifecycle on Mobile Devices Application?First steps of creating API integration with Magento2.3
Why to use water tanks from Space shuttle in museum?
If a problem only occurs randomly once in every N times on average, how many tests do I have to perform to be certain that it's now fixed?
Smart people send dumb people to a new planet on a space craft that crashes into a body of water
What is the intuition behind uniform continuity?
Is the world in Game of Thrones spherical or flat?
Is there a rule that prohibits us from using 2 possessives in a row?
Infinitely many hats
common answer to a question about a price for alcohol
How can I offer a test ride while selling a bike?
Points within polygons in different projections
What is the difference between nullifying your vote and not going to vote at all?
Why does the UK have more political parties than the US?
Select row of data if next row contains zero
Term for checking piece whose opponent daren't capture it
Possible nonclassical ion from a bicyclic system
Hiker's Cabin Mystery | Pt. IX
What does the behaviour of water on the skin of an aircraft in flight tell us?
Where can I find the list of all tendons in the human body?
The qvolume of an integer
Can an old DSLR be upgraded to match modern smartphone image quality
Thousands and thousands of words
Preserving culinary oils
Is there an explanation for Austria's Freedom Party virtually retaining its vote share despite recent scandal?
Looking after a wayward brother in mother's will
Magento 2 API Integration Issue [closed]
Oauth Error while extending Magento Rest APIHow do I get an access token with OAuth?What is a Magento 2 “Web API Integration”Magento 2: Successful oAuth/Integration FlowMagento 2.2 REST API Add Item to cart issueMagento 2 : Cannot Use REST APIoauth/token/request not getting parameter from thirdparty applicationMagento 2 token integration errorMagento 2 rest API - How to Manage API Authentication Lifecycle on Mobile Devices Application?First steps of creating API integration with Magento2.3
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm running a Magento 2.X.X instance on a dedicated CentOS 7 server.
I'm trying to integrate the Linnworks API but it would seem it's a lot more complicated than I thought it would be.
In Linnworks
- I went into Settings > Channel Integration
- Clicked Add New and selected the Magneto 2 option
- Checked autofilled form - all good so hit Step 2
- Went into Magento Backend
In Magento
- I went into System > Extensions > Integrations
- I added my new Linnworks integration with following details:
- Name: Linnworks
- Callback URL: Copied from the Linnworks site
- Identity Link URL: Copied from the Linnworks site
- Went into the API tab and manually ticked every box
- Hit Save and Activate
This is where the error comes up, it's just a plain-text webpage with this message:
Something went wrong: "oauth_consumer_key" is required. Enter and try again, "oauth_signature" is required. Enter and try again, "oauth_signature_method" is required. Enter and try again, "oauth_nonce" is required. Enter and try again, "oauth_timestamp" is required. Enter and try again
I've tested this with a vanilla Magento install, no plugins, no additional code and the error persisted.
I did actually test another API (ClickAndDrop) on my local machine and dev server, and that all worked, which made me think it's something server-level. However, I raised a ticket and they made amendments but to no avail.
I'm not really quite sure how to resolve this error or how to even debug.
I've also tried selecting (on Linnworks side) OAuth Manual and Admin login.
Admin login doesn't work, and Magento2 doesn't generate the Access tokens for whatever reason. I was able to get the Access Token like this:
curl -X POST "https://my.store.co.uk/index.php/V1/integration/admin/token" -H "Content-Type: application/json" -d '"username":"someUser", "password":"somePass"'
but couldn't get the access token secret, so can't test fully that method.
How do I resolve?
Edit:
It's not a third-party module. It's default Magento 2 API behaviour that's not working o.O - I'm just using Linnworks as an example
api integration
closed as off-topic by sv3n, saravanavelu, Manashvi Birla, Priyank, HelgeB May 23 at 14:13
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions about third-party modules are generally off-topic because the scope of functionality and code are not available. For more information, see this meta post/answer." – sv3n, saravanavelu, Manashvi Birla, Priyank, HelgeB
add a comment |
I'm running a Magento 2.X.X instance on a dedicated CentOS 7 server.
I'm trying to integrate the Linnworks API but it would seem it's a lot more complicated than I thought it would be.
In Linnworks
- I went into Settings > Channel Integration
- Clicked Add New and selected the Magneto 2 option
- Checked autofilled form - all good so hit Step 2
- Went into Magento Backend
In Magento
- I went into System > Extensions > Integrations
- I added my new Linnworks integration with following details:
- Name: Linnworks
- Callback URL: Copied from the Linnworks site
- Identity Link URL: Copied from the Linnworks site
- Went into the API tab and manually ticked every box
- Hit Save and Activate
This is where the error comes up, it's just a plain-text webpage with this message:
Something went wrong: "oauth_consumer_key" is required. Enter and try again, "oauth_signature" is required. Enter and try again, "oauth_signature_method" is required. Enter and try again, "oauth_nonce" is required. Enter and try again, "oauth_timestamp" is required. Enter and try again
I've tested this with a vanilla Magento install, no plugins, no additional code and the error persisted.
I did actually test another API (ClickAndDrop) on my local machine and dev server, and that all worked, which made me think it's something server-level. However, I raised a ticket and they made amendments but to no avail.
I'm not really quite sure how to resolve this error or how to even debug.
I've also tried selecting (on Linnworks side) OAuth Manual and Admin login.
Admin login doesn't work, and Magento2 doesn't generate the Access tokens for whatever reason. I was able to get the Access Token like this:
curl -X POST "https://my.store.co.uk/index.php/V1/integration/admin/token" -H "Content-Type: application/json" -d '"username":"someUser", "password":"somePass"'
but couldn't get the access token secret, so can't test fully that method.
How do I resolve?
Edit:
It's not a third-party module. It's default Magento 2 API behaviour that's not working o.O - I'm just using Linnworks as an example
api integration
closed as off-topic by sv3n, saravanavelu, Manashvi Birla, Priyank, HelgeB May 23 at 14:13
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions about third-party modules are generally off-topic because the scope of functionality and code are not available. For more information, see this meta post/answer." – sv3n, saravanavelu, Manashvi Birla, Priyank, HelgeB
add a comment |
I'm running a Magento 2.X.X instance on a dedicated CentOS 7 server.
I'm trying to integrate the Linnworks API but it would seem it's a lot more complicated than I thought it would be.
In Linnworks
- I went into Settings > Channel Integration
- Clicked Add New and selected the Magneto 2 option
- Checked autofilled form - all good so hit Step 2
- Went into Magento Backend
In Magento
- I went into System > Extensions > Integrations
- I added my new Linnworks integration with following details:
- Name: Linnworks
- Callback URL: Copied from the Linnworks site
- Identity Link URL: Copied from the Linnworks site
- Went into the API tab and manually ticked every box
- Hit Save and Activate
This is where the error comes up, it's just a plain-text webpage with this message:
Something went wrong: "oauth_consumer_key" is required. Enter and try again, "oauth_signature" is required. Enter and try again, "oauth_signature_method" is required. Enter and try again, "oauth_nonce" is required. Enter and try again, "oauth_timestamp" is required. Enter and try again
I've tested this with a vanilla Magento install, no plugins, no additional code and the error persisted.
I did actually test another API (ClickAndDrop) on my local machine and dev server, and that all worked, which made me think it's something server-level. However, I raised a ticket and they made amendments but to no avail.
I'm not really quite sure how to resolve this error or how to even debug.
I've also tried selecting (on Linnworks side) OAuth Manual and Admin login.
Admin login doesn't work, and Magento2 doesn't generate the Access tokens for whatever reason. I was able to get the Access Token like this:
curl -X POST "https://my.store.co.uk/index.php/V1/integration/admin/token" -H "Content-Type: application/json" -d '"username":"someUser", "password":"somePass"'
but couldn't get the access token secret, so can't test fully that method.
How do I resolve?
Edit:
It's not a third-party module. It's default Magento 2 API behaviour that's not working o.O - I'm just using Linnworks as an example
api integration
I'm running a Magento 2.X.X instance on a dedicated CentOS 7 server.
I'm trying to integrate the Linnworks API but it would seem it's a lot more complicated than I thought it would be.
In Linnworks
- I went into Settings > Channel Integration
- Clicked Add New and selected the Magneto 2 option
- Checked autofilled form - all good so hit Step 2
- Went into Magento Backend
In Magento
- I went into System > Extensions > Integrations
- I added my new Linnworks integration with following details:
- Name: Linnworks
- Callback URL: Copied from the Linnworks site
- Identity Link URL: Copied from the Linnworks site
- Went into the API tab and manually ticked every box
- Hit Save and Activate
This is where the error comes up, it's just a plain-text webpage with this message:
Something went wrong: "oauth_consumer_key" is required. Enter and try again, "oauth_signature" is required. Enter and try again, "oauth_signature_method" is required. Enter and try again, "oauth_nonce" is required. Enter and try again, "oauth_timestamp" is required. Enter and try again
I've tested this with a vanilla Magento install, no plugins, no additional code and the error persisted.
I did actually test another API (ClickAndDrop) on my local machine and dev server, and that all worked, which made me think it's something server-level. However, I raised a ticket and they made amendments but to no avail.
I'm not really quite sure how to resolve this error or how to even debug.
I've also tried selecting (on Linnworks side) OAuth Manual and Admin login.
Admin login doesn't work, and Magento2 doesn't generate the Access tokens for whatever reason. I was able to get the Access Token like this:
curl -X POST "https://my.store.co.uk/index.php/V1/integration/admin/token" -H "Content-Type: application/json" -d '"username":"someUser", "password":"somePass"'
but couldn't get the access token secret, so can't test fully that method.
How do I resolve?
Edit:
It's not a third-party module. It's default Magento 2 API behaviour that's not working o.O - I'm just using Linnworks as an example
api integration
api integration
edited May 23 at 16:00
treyBake
asked May 23 at 9:42
treyBaketreyBake
140118
140118
closed as off-topic by sv3n, saravanavelu, Manashvi Birla, Priyank, HelgeB May 23 at 14:13
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions about third-party modules are generally off-topic because the scope of functionality and code are not available. For more information, see this meta post/answer." – sv3n, saravanavelu, Manashvi Birla, Priyank, HelgeB
closed as off-topic by sv3n, saravanavelu, Manashvi Birla, Priyank, HelgeB May 23 at 14:13
This question appears to be off-topic. The users who voted to close gave this specific reason:
- "Questions about third-party modules are generally off-topic because the scope of functionality and code are not available. For more information, see this meta post/answer." – sv3n, saravanavelu, Manashvi Birla, Priyank, HelgeB
add a comment |
add a comment |
0
active
oldest
votes
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes