Download the PHP package kbariotis/feedly-api without Composer
On this page you can find all versions of the php package kbariotis/feedly-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download kbariotis/feedly-api
More information about kbariotis/feedly-api
Files in kbariotis/feedly-api
Package feedly-api
Short Description PHP wrapper around Feedly's REST API
License MIT
Homepage https://github.com/stakisko/feedly-api
Informations about the package feedly-api
feedly-api
PHP wrapper around Feedly's REST API.
Notes
Check the examples before anything.
If you are working in Sandbox mode of Feedly's API you should know a couple of things.
- Your Client's ID, secret must taken from here, which is updated very often so be sure to check it once in while.
- While in Sandbox mode, only "http://localhost" is permited for callback url. So leave it as is and just replace it every time with your domain, if it's different. You can also add you own to permitted domains here.
- Once you've done developing you can contact Feedly and ask them to put you on production.
Installation
Add this to your composer.json
Or download the ZIP.
Documentation
Constructor:
The Mode
determines if you want to use the Sandbox mode (SandBoxMode
class) or standard one (DeveloperMode
class).
The AccessTokenStorage
determines where the information about token should be stored. In example in session, file or database.
***Sandbox Example
***Standard Mode Example
Authentication:
Check the example.
Note that not every Feedly action needs authentication. Passing a token is optional.
Endpoints
Contribute
- Create a branch
- Add your models here
- Run tests with
phpunit
- Make a Pull Request