I want to use the Oauth for calling the etsy API but I dont have the permission to install php oauth PECL extentsion on the server. So I heard about the ZEND oauth library. Can I use ZEND Oauth library without using the ZENd framework as I have heard that ZEND libraries are loosley coupled and can be used independant of framewrok ? If I can do it. What libraries do I have to include in my project
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
I wrote a document once in my Knowledge Base for how to use the library in Zend Framework. See link at the bottom. In a nutshell you have to provide the base path of the library to the php include path. The important thing here is that you provide the path for the library and NOT the Zend directory itself. All files in Zend Framework 1.x have require_once relative to this library path and the Zend folder. (Note that this will be different in ZF2 and it will depend on autoloading). Once you have that in your environment you should be good to access every class in the library and work with it.
|
|||
|
|
|
Of course you can. Install the Zend Framework as usual and just use, what you need. |
|||
|
|