Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

social-api-js

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

social-api-js

Social network API library

  • 1.2.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-33.33%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status npm version Bower version

Social API

Using one social network API is easy. But using multiple ones throughout your app, is not only is tedious, but very frustrating due to each API being soooo different from one another. The response objects, the methods, the parameters, everything.

This library aims to make things easier for you by giving you a common interface for each social network API. Each network's API can be accessed using the same method names and response objects that follow the same schema.

Supports the following APIs:

  • Facebook
  • Tumblr
  • Twitter
  • Instagram
  • Vine

Feature Roadmap

Each API will have a standard way of achieving the following with simple javascript methods. The goal is for each network interface to follow a hard standard--having the same response format, method signature, and error handling. Here are the features that either have been completed or will be in the next few weeks.

  • API loading
  • User logins (Facebook only)
  • Permissions (Facebook only)
  • Login Status
  • User Tokens
  • User Posts
  • User Profiles

Usage

In order to use this package, you must be using a compiler to utilize the latest ES6 javascript syntax. I recommend installing babel (or similiar) and importing the source files directly. Or you can be old-school and use the files in the dist folder. :)

Methods / Properties

load([options])

This method allows you to lazily load the api of any social network, using the supplied object of options. It also returns a promise that is the API object of the network. The following example uses Facebook, but you can also follow this same pattern for each of the other network interfaces (Twitter, Tumblr, Instagram, Vine, etc);

import {Facebook} from 'social-api-js';
Facebook.load({appId: 'MyAP33IYEK3y'}).then(function (FB) {
    // API loaded! Now, do something with the FB object
    console.log(FB);
});

When using the load() call, certain networks require different set of options. Please see the documentation of the network to find out which options properties you need to pass.

login([options])

Use this method to log a user into any social network.

Options
ParameterTypeDescriptionDefaultRequired?
permissionsArrayThe permissions to request from the user when logging in[]No
Permissions

Passing a array of pre-determined permissions to the login() method will map to the appropriate permissions to the specific social network you've requested. Here's an example using the Facebook social network.

// request permissions to create posts for the user, read the user's posts, and read their connection's profiles.
var permissions = ['createPosts', 'readPosts', 'readFriendProfiles'];
Facebook.login({
    permissions: permissions
}).then(() => {
    // user has logged in allowing the specified permissions
});

Generally permissions follow the CRUD methodology when manipulating persistent data. The following are all permissions currently available which applies to all social networks available in this package.

PermissionDescription
createPostCreate posts on behalf of the user.
readPostsRead the user's posts.
updatePostsUpdate the user's posts (if social network allows it).
deletePostsRemove a user's posts (if social network allows it).
readProfileRead a user's profile information.
readFriendProfilesRead profiles of the user's friends.
Response

The login() method will return a promise that will resolve with a standard object with the following properties when the user has taken an action after being taken to the login flow.

PropertyTypeDescription
accessTokenStringThe user token
userIdStringThe id of the user
expiresAtDateThe date (and time) the user's token will expire
Facebook.login().then((data) => {
    // user has logged in allowing the specified permissions
    console.log(data.accessToken, 'The user token');
    console.log(data.userId, 'The id of the user');
    console.log(data.expiresAt, 'When token expires');
});
Login Caveats
  1. Facebook requires you to call login() after a user interaction, like a click on a button for instance. If you attempt to call login() without a user interaction, most browsers will block it.
  2. Twitter, most of the time, will require you to go into your application settings for your app and enable the "Allow this application to be used to Sign in with Twitter?" option.

Contributing

All pull requests are welcome!

Development

To run tests:

npm test

Keywords

FAQs

Package last updated on 17 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc