PHPackages                             exileed/inoreader-api - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. exileed/inoreader-api

ActiveLibrary[API Development](/categories/api)

exileed/inoreader-api
=====================

Inoreader.com api client

1.0.0(5y ago)61054MITPHPPHP ^7.3 || ^8.0

Since Apr 14Pushed 5y ago1 watchersCompare

[ Source](https://github.com/exileed/inoreader-api)[ Packagist](https://packagist.org/packages/exileed/inoreader-api)[ Docs](https://github.com/exileed/inoreader-api)[ RSS](/packages/exileed-inoreader-api/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)Dependencies (3)Versions (5)Used By (0)

Inoreader PHP Client
====================

[](#inoreader-php-client)

[![Latest Version](https://camo.githubusercontent.com/7ca178cd6c041084e39185856121745fbd56f753b14e5616d5a86a2fc60ea08d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6578696c6565642f696e6f7265616465722d617069)](https://packagist.org/packages/exileed/inoreader-api)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/c34efbae6139ddf16c286fe4a1fbb19063353fe57578ed69a52f378773a6386d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6578696c6565642f696e6f7265616465722d6170692f746573743f7374796c653d666c61742d7371756172652631)](https://camo.githubusercontent.com/c34efbae6139ddf16c286fe4a1fbb19063353fe57578ed69a52f378773a6386d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6578696c6565642f696e6f7265616465722d6170692f746573743f7374796c653d666c61742d7371756172652631)[![Coverage Status](https://camo.githubusercontent.com/73719ee7eb650d256b98aa4dcc5b981d91d37a51e17338bdc67f5da96c66d337/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6578696c6565642f696e6f7265616465722d6170692e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/exileed/inoreader-api/code-structure)[![Quality Score](https://camo.githubusercontent.com/2e99895982e5bdac282a14c0b8530024b418304d69d82046691b4e6aecfb789b/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6578696c6565642f696e6f7265616465722d6170692e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/exileed/inoreader-api)[![Total Downloads](https://camo.githubusercontent.com/239bbc876898a27b61a689b1a5e39abe43126ffdbed0ac5e1663647a48757bb2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6578696c6565642f696e6f7265616465722d6170692e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/exileed/inoreader-api)

A PHP client for authenticating with Inoreader using OAuth and consuming the API.

Install
-------

[](#install)

Via Composer

```
$ composer require exileed/inoreader-api
```

Usage
-----

[](#usage)

#### Client Example

[](#client-example)

```
use ExileeD\Inoreader\Inoreader;

$apiKey = 1000000;
$apiSecret = 'xxxx';
$token = 'ssss';

$inoreaderClient = new Inoreader( $apiKey, $apiSecret );

$inoreaderClient->setAccessToken($token);

$inoreaderClient->itemsIds();
```

#### Access token via Oauth2

[](#access-token-via-oauth2)

```
use ExileeD\Inoreader\Inoreader;

$apiKey = 1000000;
$apiSecret = 'xxxx';

$client = new Inoreader( $apiKey, $apiSecret );
$redirectUrl = 'http://localhost';
$scope = 'test';

$client->getLoginUrl($redirectUrl, $scope);

$client->accessTokenFromCode('code', $redirectUrl);

// Access token from refresh token
$client->accessTokenFromCode('code', $redirectUrl);
```

### Advanced usage

[](#advanced-usage)

User info

```
$client->userInfo();
```

Add subscription

```
$url = 'https://www.inoreader.com/blog/feed';

$client->addSubscription($url);
```

Edit subscription

```
$url = 'feed/https://www.inoreader.com/blog/feed';

$client->editSubscription(['ac' => 'edit', 's' => $url, 't' => 'test']));
```

Unread count

```
$client->unreadCount():
```

Subscription list

```
$client->subscriptionList();
```

Folders and tags list

```
use ExileeD\Inoreader\Objects\Tag;

$type = Tag::TYPE_ITEM;
//$type = Tag::TYPE_TAG;
//$type = Tag::TYPE_FOLDER;
//$type = Tag::TYPE_ACTIVE_SEARCH;

$client->tagsList($type, $count);
```

Testing
-------

[](#testing)

```
$ ./vendor/bin/phpunit
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Dmitriy Kuts](https://github.com/exileed)
- [All Contributors](https://github.com/exileed/inoreader-ap/contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity71

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~318 days

Total

4

Last Release

1994d ago

Major Versions

v0.2 → 1.x-dev2020-11-23

PHP version history (2 changes)v0.1PHP ^7.1

1.x-devPHP ^7.3 || ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/9e92b6ee31e63ba56754db82b0fe82106c4e766dd161a0fd6c59cc4acaa23bd5?d=identicon)[exileed](/maintainers/exileed)

---

Top Contributors

[![exileed](https://avatars.githubusercontent.com/u/942898?v=4)](https://github.com/exileed "exileed (14 commits)")

---

Tags

apiinoreaderinoreader-apiphpphp-clientpsr-7phpapioauth2inoreader

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/exileed-inoreader-api/health.svg)

```
[![Health](https://phpackages.com/badges/exileed-inoreader-api/health.svg)](https://phpackages.com/packages/exileed-inoreader-api)
```

###  Alternatives

[openai-php/laravel

OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API

3.7k7.6M74](/packages/openai-php-laravel)[hubspot/api-client

Hubspot API client

23414.2M16](/packages/hubspot-api-client)[theodo-group/llphant

LLPhant is a library to help you build Generative AI applications.

1.5k311.5k5](/packages/theodo-group-llphant)[resend/resend-php

Resend PHP library.

564.7M21](/packages/resend-resend-php)[checkout/checkout-sdk-php

Checkout.com SDK for PHP

553.3M7](/packages/checkout-checkout-sdk-php)[scriptdevelop/whatsapp-manager

Paquete para manejo de WhatsApp Business API en Laravel

762.6k](/packages/scriptdevelop-whatsapp-manager)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
