Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
Is there a PHP library from Amazon using their new Amazon SP-API? I found this one: https://github.com/clousale/amazon-sp-api-php but it just looks like a dummy.
Thanks for your help!
Not yet for the time being. You can generate a library with swagger using the model files. You will get the same result as Clousale. However, if you can't handle it, you can build the library yourself by looking at the documentation.
Blog entry to explain SP-API and the current status
Selling Partnership Documentation
Selling Partnership Model-files
There are more links on how to authorize yourself in the API:
Selling Partnership Authorization (AWS Signature V4)
With this information you can already build the whole library in PHP. I did not need more information myself.
You will probably get to the same point as me where you will find that uploading encrypted files does not work that way. Currently several people have this problem (see issue in github). If I still get the problem solved, I would write a manual and make my PHP library available.
--->EDIT<---
Now I have found out how documents are encrypted and uploaded. A short manual and PHP code can be found here (selling-partner-api-docs/issues/97).
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I’m using Laravel for a project and it’s a great framework, but the manual often falls short.
For example, I’m trying to figure out how to use named routes in the view using Blade, but the manual explains how to declare them and how to use it in the backend but ends there. I'm pretty sure there's a way to generate a URL using the name of the route.
This isn’t the only problem I’ve ran into where I can’t get the whole story on the manual. Do you know of a place where I can read the more complete manual?
No. You have linked to the official manual. However, there are a lot of great resources out there:
Laracasts
#laravel IRC Chat
/r/laravel on reddit
What you are looking for are the URL helper functions.
Edit: Oh yeah, the full API is also available.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am currently writing a payment gateway integration for wordpress (simple redirect) and once finished I would like to list it for sale online for others to use.
The plugin will be listed in the wordpress extensions, and there will be a free version with all the basic functionality. The pro (paid) version will have further customisation to page styling etc.
So - I would like people to pay on a website for an API key for the pro version, and simply enable that functionality on their plugin by entering the key...
Can someone point me in the right direction as to where to start?
Is there an open source framework for this already available?
Do I learn RESTful/SOAP?
Any help would be greatly appreciated - thanks!
If you're open to a 3rd Party solution, check out http://3scale.net. It will take care of letting you create a white-label page to assign/manage API keys, and let you set up metering too, if you'd like. I've used their Scala library with great success, but there is also a PHP library they provide that will do the trick for you.
https://github.com/3scale/3scale_ws_api_for_php/tree/master
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I want to use the Google Calendar API php client library, it seems to work for the basic example available but I can't find any documentation/class-list/methods/api-explanation anywhere.
Are there anything available at all or do I have to dig the source file?
Google Apps API client: https://developers.google.com/google-apps/calendar/setup
Calendar V3 API documentation: https://developers.google.com/google-apps/calendar/v3/reference/
Examples: https://developers.google.com/google-apps/calendar/recurringevents
Is that what you expected?
Google's documentation seems to be outdated...
For the best chance you should head over to http://amazewebs.com
AmazeWebs has more than enough information to help you understand and write your own Google API Calendar Scripts. Using PHP and following the demonstration videos; you can have a script 'up and running' in minutes! ...including example scripts, instructional videos, PDF help guides (common debugging), 1-to-1 support etc...
See the demo of a simple script: http://amazewebs.com/demo
Download a working copy of the API Client Library v3 here: http://amazewebs.com/downloads/google-api.zip
See the demo in action here: https://www.youtube.com/watch?v=x6aurr7TDMI
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I'm about to integrate Amazon Simple Storage Service (S3) with a php web application that must maintain a lot of office documents and photoshop files.
Can anyone point me to a brief tutorial on how to do this? There's "too much" documentation on the Amazon website for me to wade through. I learn best by studying and tinkering with code that actually works.
If you're using Zend, the S3 section has a great tutorial.
http://framework.zend.com/manual/en/zend.service.amazon.s3.html
If not, but don't want to roll your own code, try this:
http://undesigned.org.za/2007/10/22/amazon-s3-php-class
The basics are pretty ... basic:
$s3 = new S3('accessKey', 'secretKey');
$s3->putBucket('bucket', S3::ACL_PUBLIC_READ);
$s3->putObjectFile('file.doc', 'bucket', 'docs/file.doc', S3::ACL_PUBLIC_READ);
$s3->deleteObject('bucket', 'docs/file.doc');
Or this:
https://github.com/tpyo/amazon-s3-php-class
Which is a great library - I've used it. I prefer it to Zend S3.
I would use the official SDK for php from Amazon.
Start with the Getting Started Guide, and then consult the full library docs as needed.
If you are new to S3, the general getting started guide should be useful in giving a general overview of how the service works.
This very nice tutorial comes with an added bonus; it links to an already-written library, so you won't have to write all the code yourself.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Does PHP have any classes to receive email? Do you know of any good resources about this?
Try php-imap library. It's very popular and stable.
I had this question too and I wanted to get emails in real time so I worked out my own solution with google app engine. I basically made a small dedicated google app engine app to receive and POST emails to my main site.
You can check out Emailization (a little weekend project I did to do it for you), or you this small GAE app that should do the trick.
I kinda explained it more on another question.
Hope that helps!
If you want to receive e-mail in real-time(COOL? but have to use .appspot domain. You could off course also forward it to the .appspot domain) I would advise you to have a look at google app engine which is free to use(generous quota). You could forward the email it your webserver using asynchronous request which in turn let's you do all the cool stuf you would like it to do in PHP.
Python is pretty easy to learn especially after watching this video from Brett Slatkin explaining how to "Developing and deploying an application on Google App Engine" and the snippets in the google app engine documentation should get you started in no time.