定制 pecee/happn-php-sdk 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

pecee/happn-php-sdk

最新稳定版本:1.3.0

Composer 安装命令:

composer require pecee/happn-php-sdk

包简介

Easy to use PHP SDK for accessing Happn data.

README 文档

README

Easy to use PHP SDK for accessing Happn data.

Installation

Add the latest version of happn-php-sdk to your composer.json

{
    "require": {
        "pecee/happn-php-sdk": "1.*"
    },
    "require-dev": {
        "pecee/happn-php-sdk": "1.*"
    }
}

Like this?

Like this SDK? Then you'll definetly love our "tinder-php-sdk", check it out here: https://github.com/skipperbent/tinder-php-sdk

Examples

This section contains basic examples on how to use the SDK.

Getting Facebook access token

To use the SDK - the api requires you to get a valid Facebook access token. This can be accomplished by following this link and copying the access_token parameter provided by Facebook after a successful login.

Authentication

Connect to the service, using your Facebook token.

$happn = new \Pecee\Http\Service\Happn($fbToken);

Get user information

Fetches user information

Returns dictionary packed with: user id, facebook id, twitter id (not implemented), first name, last name, birth date, login (nulled), workplace, distance

$response = $happn->getUserInfo($userId);

Get recommendations

Get recommendations from Happn server to the user authenticated.

$response = $happn->getRecommendations($limit = 16, $offset = 0);

Get distance

Fetches the distance from another user

$response = $happn->getDistance($userId);

Get Happn settings

Note: Will be updated soon with correct parameters

Set Happn settings.

$response = $happn->setSettings(array $userId);

Set position

Set the position of the user using Happn's API

$response = $happn->setPosition($lat, $lon);

Set position

Updates user activity

$response = $happn->updateActivity();

Get user id

Returns user id of the currently authenticated user

$response = $happn->getUserId();

Get Facebook access token

Returns Facebook access token of the currently authenticated user

$response = $happn->getFbToken();

Custom query

Make custom query upon Happn api.

$response = $happn->api($url, $method, array $data);

The MIT License (MIT)

Copyright (c) 2015 Simon Sessingø / happn-php-sdk

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

统计信息

  • 总下载量: 82
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 3
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-11-05