Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/genfirst/react-twitter-auth
A React Twitter Login Component
https://github.com/genfirst/react-twitter-auth
authentication react reactjs twitter twitter-login
Last synced: about 7 hours ago
JSON representation
A React Twitter Login Component
- Host: GitHub
- URL: https://github.com/genfirst/react-twitter-auth
- Owner: GenFirst
- License: mit
- Created: 2017-08-22T21:32:08.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-09-30T08:40:27.000Z (about 4 years ago)
- Last Synced: 2024-11-13T13:02:34.485Z (2 days ago)
- Topics: authentication, react, reactjs, twitter, twitter-login
- Language: JavaScript
- Size: 89.8 KB
- Stars: 94
- Watchers: 4
- Forks: 52
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![NPM](https://nodei.co/npm/react-twitter-auth.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/react-twitter-auth/)
[![npm](https://img.shields.io/npm/dt/react-twitter-auth.svg)](https://img.shields.io/npm/dt/react-twitter-auth.svg)
[![Build Status](https://travis-ci.org/GenFirst/react-twitter-auth.svg?branch=master)](https://travis-ci.org/GenFirst/react-twitter-auth)
[![Code Climate](https://codeclimate.com/github/GenFirst/react-twitter-login/badges/gpa.svg)](https://codeclimate.com/github/GenFirst/react-twitter-login)
[![Coverage Status](https://coveralls.io/repos/github/GenFirst/react-twitter-auth/badge.svg?branch=master)](https://coveralls.io/github/GenFirst/react-twitter-auth?branch=master)
[![npm version](https://badge.fury.io/js/react-twitter-auth.svg)](https://badge.fury.io/js/react-twitter-auth)
![License](https://img.shields.io/badge/license-MIT-blue.svg)# React Twitter Authentication Component
> A React Twitter oAUth Sign-in / Log-in Component for React
## Installation
`npm install react-twitter-auth`
## Usage
```jsx harmony
```
Custom content that overrides default content:
```jsx harmony
Custom Twitter Login content
```
## Options
| params | value | default value | description |
| :-------------: | :------: | :------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
| tag | string | button | tag that should be used to create element that will be used as loging element |
| text | string | Sign in with Twitter | text that will be shown in component |
| loginUrl | string | | URL that will be used to finish 3rd step of authentication process |
| requestTokenUrl | string | | URL that will be used to get request token |
| onFailure | function | | function that will be called if user cannot be authenticated |
| onSuccess | function | | function that will be called if user is successfully authenticated |
| disabled | boolean | false | disable component |
| style | object | | style object |
| className | string | | class name for component |
| dialogWidth | number | 600 | dialog width |
| dialogHeight | number | 400 | dialog height |
| showIcon | bool | true | should default icon be visible |
| credentials | string | same-origin | indicates whether the user agent should send cookies from the other domain in the case of cross-origin requests. Possible values: `omit`, `same-origin`, `include` |
| customHeaders | object | {} | custom headers should be object with fields that needs to be sent to user server. Field name will be used as header key and field value as header value. Because of bug in fetch implementation all keys will be lowercase. |
| children | node | | this props can be used in order to override default component content |
| forceLogin | bool | false | force user to authenticate with Twitter username and password |
| screenName | string | | prefills the username input box of the OAuth login screen with the given value |# Examples
Full example can be found in [example](https://github.com/GenFirst/react-twitter-login/tree/master/example) folder.
You can find tutorial that explains in details how to implement Twitter authentication with RESTful backend [here](https://medium.com/@robince885/how-to-do-twitter-authentication-with-react-and-restful-api-e525f30c62bb).
# Workflow
The detailed explanation of the whole process can be found in Twitter documentation. In picture below you can find out all the steps that are needed.
![Twitter authentication workflow](https://cdn-images-1.medium.com/max/800/1*RTsSRbVeEzPaC68hRT8n2g.png)
# License
react-twitter-auth is released under [MIT License](https://opensource.org/licenses/MIT).