]> git.mxchange.org Git - friendica-addons.git/blob - twitter/README
Merge branch 'apull'
[friendica-addons.git] / twitter / README
1 ____ Twitter Plugin ____
2 By Tobias Diekershoff
3    tobias.diekershoff(at)gmx.net
4
5 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
6 !!   This addon is currently under development. If you have any problem     !!
7 !!   with it, please contact the Author.                                    !!
8 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
9
10 With this addon to Friendika you can give your user the possibility to post
11 their *public* messages to Twitter. The messages will be strapped their rich
12 context and shortened to 140 characters length if necessary. If shortening of
13 the message was performed a link will be added to the Tweet pointing to the
14 original message on your server.
15
16 There is a similar addon for forwarding public messages to
17 "StatusNet":http://status.net [[StatusNet Plugin]].
18
19 Online version of this document: http://ur1.ca/35mml
20
21 ___ Requirements ___
22
23 To use this plugin you have to register your Friendika instance as an
24 _client application_ for Twitter with _read and write_ access, we do not intend
25 to use Twitter for login. The registration can be done at twitter.com/apps
26 and you need to have a Twitter account to do so.
27
28 After you registered the application you get an OAuth consumer key / secret
29 pair that identifies your app, you will need them for configuration.
30
31 The inclusion of a shorturl for the original posting in cases when the
32 message was longer than 140 characters requires it, that you have *PHP5+* and
33 *curl* on your server.
34
35 ___ Where to find ___
36
37 In the Friendika git repository /addon/twitter/, this directory contains
38 all required PHP files (including the Twitter OAuth library [1] by Abraham
39 Williams, MIT licensed and the Slinky library [2] by Beau Lebens, BSD license),
40 a CSS file for styling of the user configuration and an image to _Sign in with
41 Twitter_.
42
43 [1] https://github.com/abraham/twitteroauth
44 [2] http://dentedreality.com.au/projects/slinky/
45
46 ___ Configuration ___
47
48 __ Global Configuration __
49
50 To activate this addon add @twitter@ to the list of active addons in your
51 .htconfig.php file 
52     $a->config['system']['addon'] = "twitter, ..."
53 Afterwards you need to add your OAuth consumer key / secret pair to it by
54 adding the following two lines
55
56 $a->config['twitter']['consumerkey'] = 'your consumer KEY here';
57 $a->config['twitter']['consumersecret'] = 'your consumer SECRET here';
58
59 When this is done your user can now configure their Twitter connection at
60 "Settings -> Plugin Settings" and enable the forwarding of their *public*
61 messages to Twitter.
62
63 __ User Configuration __
64
65 When the OAuth consumer informations are correctly placed into the
66 configuration file and a user visits the "Plugin Settings" page they can now
67 connect to Twitter. To do so one has to follow the _Sign in with Twitter_
68 button (the page will be opened in a new browser window/tab) and get a PIN from
69 Twitter. This PIN has to be entered on the settings page. After submitting the
70 PIN the plugin will get OAuth credentials identifying this user from the
71 Friendika account.
72
73 If this first step was successful the Twitter configuration will be changed
74 on the "Plugin Settings" page displaying two check boxes. One to enable/disable
75 the forwarding of *all public* postings to Twitter and one to clear the
76 personal configuration from the Twitter credentials.
77