WPGetAPI
Forum Replies Created
-
Forum: Plugins
In reply to: [WPGet API - Connect to any external REST API] Woocommerce APICould you please post a screenshot of your endpoint settings?
Forum: Plugins
In reply to: [WPGet API - Connect to any external REST API] Woocommerce APIHi,
Thank you, yes I can confirm that our plugin will work with this API.
You would need to add your API key like this here – https://wpgetapi.com/docs/connect-using-api-key-in-headers/
But you would simply replace the ‘x-api-key’ with ‘md-api-key’ and then add your api key.
Forum: Plugins
In reply to: [WPGet API - Connect to any external REST API] Woocommerce APIHello,
I have looked at moedelo.org but I do not understand Russian, so I do not know which type of API they use.
If they had English docs, then I would be able to tell you but I can’t find any online.Forum: Plugins
In reply to: [WPGet API - Connect to any external REST API] Use this for SMMMarking as resolved now as we haven’t heard back in over a week.
Forum: Plugins
In reply to: [WPGet API - Connect to any external REST API] Use this for SMMAre you using the template tag or the shortcode?
If using the shortcode, you would need the Pro plugin to be able to extract certain keys. You can then simply add this to your shortcode:
keys="response"
If using the template tag, then you can do something like this (replacing the API_ID and ENDPOINT_ID with your own):
$data = wpgetapi_endpoint( 'API_ID', 'ENDPOINT_ID', array('debug' => false) ); echo $data['response'];
- This reply was modified 2 years, 9 months ago by WPGetAPI.
Forum: Plugins
In reply to: [WPGet API - Connect to any external REST API] Use this for SMMHi,
1 – this could only be found if your website was hacked or if you leave the debug=true option on. Our plugin does not reveal api keys on the frontend.
2 – sorry, I’m not sure what you mean with this one? Could you explain a little more?
3 – you would need to use a Woocommerce hook – have a look at the answers here: https://stackoverflow.com/questions/42530626/getting-order-data-after-successful-checkout-hook
You could use the Woocommerce action ‘woocommerce_thankyou’ to get the order details and then add these order details to the endpointHope this helps.
Forum: Plugins
In reply to: [WPGet API - Connect to any external REST API] Use this for SMMHello,
It sounds like you would need to get some custom development done as what you are wanting to do is rather complex.
But to try out our plugin you can look at the following which should help.
Quick Start Guide: https://wpgetapi.com/docs/quick-start-guide/
Adding the API Key: https://wpgetapi.com/docs/connect-using-api-key-in-query-string/
Using the template tag: https://wpgetapi.com/docs/using-the-template-function/But your project sounds fairly complex and would require custom development.
Forum: Plugins
In reply to: [WPGet API - Connect to any external REST API] Use this for SMMOur plugin can integrate with Woocommerce but depending on what you are wanting to do, it would also still require custom coding.
What exactly are you wanting to do?
Forum: Plugins
In reply to: [WPGet API - Connect to any external REST API] Use this for SMMHi,
Yes this API can be used with WPGetAPI. All of the endpoints can be used no problem.
Awesome, glad to hear it!!
Hi,
Ahh yes we had some code in place that was filtering some characters that caused issues for a certain API.
I’ve adjusted the code so if you update to version 1.4.10, hopefully this will fix your issue.Forum: Plugins
In reply to: [WPGet API - Connect to any external REST API] Error in outputI am going to mark this as resolved as we haven’t heard back.
Thanks.
Forum: Plugins
In reply to: [WPGet API - Connect to any external REST API] Error in outputHi there,
Can you please try adding a row to the Headers and add the following values into the Name/Value pair:
Name: content-type
Value: application/x-www-form-urlencodedAlso, what is your ‘Encode Body’ setting set to? Can you try to set this to URL Encode?