nicklasw/instagram-api 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

nicklasw/instagram-api

最新稳定版本:0.10.6

Composer 安装命令:

composer require nicklasw/instagram-api

包简介

Instagram private API SDK

README 文档

README

PHP7.2 Ready Latest Stable Version Latest Unstable Version Build Status License

Instagram Private API Library

To learn how to use this library, please refer to the source code as well as the examples.

Installation

You can install this library by using composer

composer require nicklasw/instagram-api

Features

  • Supports asynchronous and parallel requests
  • Easily extendable with new requests
  • Session and device management
  • Access discover feeds (channels, explore, top live)
  • Access direct feeds (inbox, thread)
  • Much more

Example

<?php

use Instagram\SDK\Instagram;

require_once 'vendor/autoload.php';

$instagram = Instagram::builder()->build();
$instagram->login('INSERT_USERNAME', 'INSERT_PASSWORD');

$response = $instagram->inbox();

foreach ($response->getInbox()->getThreads() as $thread) {
    $thread->sendMessage("Hello");
}

Changelog

Please see the changelog for a release history and indications on how to upgrade from one version to another.

Contributing

If you find any problems or have suggestions about this crate, please submit an issue. Moreover, any pull request, code review and feedback are welcome.

Code Guide

We use GitHub Actions to make sure the codebase is consistent (composer run lint-fix && composer run code-analyze). We try to keep comments at a maximum of 160 characters of length and code at 120.

License

MIT

统计信息

  • 总下载量: 2.94k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 149
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 147
  • Watchers: 10
  • Forks: 46
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-05-26