react-native-twitter
react-native-twitter copied to clipboard
A Twitter API client library for React Native. Currently not maintained as my main motivation of creating this library was to use the User Streams API.
Bumps [node-fetch](https://github.com/node-fetch/node-fetch) from 1.7.3 to 2.6.7. Release notes Sourced from node-fetch's releases. v2.6.7 Security patch release Recommended to upgrade, to not leak sensitive cookie and authentication header information to 3th...
Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.5 to 1.0.7. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...
I found auth not working because of "url-search-params" package. Go to node_modules\react-native-twitter\src\oauth\auth.js and replace everything with code below. It may not be most efficient but it works. ``` import {Linking}...
Hello, I am unable to send a direct message. I have the direct message permission enabled in the developer console & the recipient has direct messages enabled from any user....
In `Timeline.js` (https://github.com/Piroro-hs/react-native-twitter/blob/master/example/src/components/Timeline.js#L14), the line `this.props.twitter.stream('user').on('data', (data) => { ... })` fails with error: `Streaming APIs are not supported on iOS`, even though there's no explicit code checking for OS...
After the application has opened the browser to authenticate the user, it does not redirect back to the application. I've unlocked the "lock callback url" settings in the twitter developer...
This allows people to adhere to Apple's Guidelines by opening Twitter Auth within their application. Resolves https://github.com/Piroro-hs/react-native-twitter/issues/10
Hello, i am trying to upload an image to Twitter using your library. i did read your solution [here](https://github.com/Piroro-hs/react-native-twitter/issues/3) but it does not work. Having some more read into your...
I am getting one problem when I implement rest.get var tokens = { consumerKey: this.state.config.twitter.consumerKey, consumerSecret: this.state.config.twitter.consumerSecret, accessToken: this.state.config.twitter.oauth_token, accessTokenSecret: this.state.config.twitter.oauth_verifier }; const {rest, stream} = twitter(tokens); rest.get("account/settings").then(() => {Alert.alert('done');}).catch(console.error);...
Hi guys ! I am getting one problem when I implement rest.post: `rest.post('favorites/create', {} , params) .then( (response) => { console.log(response); })` I get this error : Failed to load...