All Projects → parse-community → Parsetwitterutils Android

parse-community / Parsetwitterutils Android

Licence: other
A utility library to authenticate ParseUsers with Twitter

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Parsetwitterutils Android

Social ids
Get user ids from social network handlers
Stars: ✭ 9 (-73.53%)
Mutual labels:  twitter
Searchtwitter
Android app, which allows to search tweets as user types and scroll them infinitely
Stars: ✭ 14 (-58.82%)
Mutual labels:  twitter
Node Twitter Api
Twitter API 1.1 client for NodeJS
Stars: ✭ 29 (-14.71%)
Mutual labels:  twitter
Tweety
.NET Standard Library to help in managing Twitter Webhook APIs.
Stars: ✭ 11 (-67.65%)
Mutual labels:  twitter
Reddit Twitter Bot
Subreddit bot to upload newest image posts to a Twitter feed
Stars: ✭ 14 (-58.82%)
Mutual labels:  twitter
Scheduled Tweets App
A Laravel app to schedule tweets
Stars: ✭ 21 (-38.24%)
Mutual labels:  twitter
Share on twitter
Simplest browser extension for Twitter users.
Stars: ✭ 8 (-76.47%)
Mutual labels:  twitter
Badusb botnet
👥😈 Infect a pc with badusb and establish a connection through telegram.
Stars: ✭ 32 (-5.88%)
Mutual labels:  twitter
Orion
🚀 "Orion" is generic fediverse microblogging application for Desktop.
Stars: ✭ 14 (-58.82%)
Mutual labels:  twitter
Vue Twitter Counter
Counter component inspired in Twitter with Vue
Stars: ✭ 29 (-14.71%)
Mutual labels:  twitter
Zonkeynet
RADIO Mesh Network
Stars: ✭ 12 (-64.71%)
Mutual labels:  twitter
Twitter Bot
👻 Markov chain-based Japanese twitter bot
Stars: ✭ 12 (-64.71%)
Mutual labels:  twitter
Huginn
Create agents that monitor and act on your behalf. Your agents are standing by!
Stars: ✭ 33,694 (+99000%)
Mutual labels:  twitter
Chir.py
twitter news bot that builds followers, posts, and bitcoin via ppc links
Stars: ✭ 10 (-70.59%)
Mutual labels:  twitter
Grain
The Entire History of You
Stars: ✭ 30 (-11.76%)
Mutual labels:  twitter
Social Listener
Python project used to collect tweets and social-network data from Social's API
Stars: ✭ 9 (-73.53%)
Mutual labels:  twitter
D3 Digest
SlackBot that watch channels looking for links and reactions, and generates digests based on those reactions
Stars: ✭ 15 (-55.88%)
Mutual labels:  twitter
Feeds
Importiert Daten aus API-Quellen wie Facebook, Instagram, Twitter, YouTube, Vimeo oder RSS (ehemals YFeed)
Stars: ✭ 34 (+0%)
Mutual labels:  twitter
Ueberauth twitter
Twitter Strategy for Überauth
Stars: ✭ 31 (-8.82%)
Mutual labels:  twitter
Jetweet
Jetweet is a mini twitter clone with basic functionalities, Made using ASP.NET CORE and Entity framework technologies
Stars: ✭ 29 (-14.71%)
Mutual labels:  twitter

[ARCHIVE] Parse Twitter Utils for Android

ParseTwitterUtils has moved to Parse-SDK-Android

Build Status License Join The Conversation Backers on Open Collective Sponsors on Open Collective Twitter Follow

A utility library to authenticate ParseUsers with Twitter.

Dependency

Add this in your root build.gradle file (not your module build.gradle file):

allprojects {
	repositories {
		...
		maven { url "https://jitpack.io" }
	}
}

Then, add the library to your project build.gradle

dependencies {
    implementation 'com.github.parse-community:ParseTwitterUtils-Android:latest.version.here'
}

Usage

Extensive docs can be found in the guide. The basic steps are:

// in Application.onCreate(); or somewhere similar
ParseTwitterUtils.initialize("YOUR CONSUMER KEY", "YOUR CONSUMER SECRET");

Then later, when your user taps the login button:

ParseTwitterUtils.logIn(this, new LogInCallback() {
  @Override
  public void done(ParseUser user, ParseException err) {
    if (user == null) {
      Log.d("MyApp", "Uh oh. The user cancelled the Twitter login.");
    } else if (user.isNew()) {
      Log.d("MyApp", "User signed up and logged in through Twitter!");
    } else {
      Log.d("MyApp", "User logged in through Twitter!");
    }
  }
});

How Do I Contribute?

We want to make contributing to this project as easy and transparent as possible. Please refer to the Contribution Guidelines.

License

Copyright (c) 2015-present, Parse, LLC.
All rights reserved.

This source code is licensed under the BSD-style license found in the
LICENSE file in the root directory of this source tree. An additional grant
of patent rights can be found in the PATENTS file in the same directory.

As of April 5, 2017, Parse, LLC has transferred this code to the parse-community organization, and will no longer be contributing to or distributing this code.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].