You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 7, 2023. It is now read-only.
Copy file name to clipboardexpand all lines: README.md
+22-13
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,8 @@ Current features/functions:
38
38
39
39
## Notes on xAuth ##
40
40
41
-
xTwitter relies on the use of [xAuth](http://dev.twitter.com/pages/xauth) to authenticate with Twitter. We do not distribute our consumer key and secret per Twitter's request. You will need to:
41
+
xTwitter relies on the use of [xAuth](http://dev.twitter.com/pages/xauth) to authenticate with Twitter. We do not distribute our consumer key and secret per Twitter's request.
42
+
You will need to:
42
43
43
44
1.[Register an application at Twitter](https://twitter.com/apps/new), and get your own consumer key and secret.
44
45
2. Request [xAuth](http://dev.twitter.com/pages/xauth) access by emailing <[email protected]> ([more info](http://dev.twitter.com/pages/xauth))
@@ -49,17 +50,17 @@ For more information on Twitter's xAuth, dohtem (from #webos on irc.freenode.net
49
50
50
51
## Trying out the sample application ##
51
52
52
-
Once you have xAuth access, enter your consumer key and consumer secret on the *lines 12 and 13* of sampleApplication/src/app/assistants/main-assistant.js, then package and install the application on your device or emulator.
53
+
Once you have xAuth access, enter your consumer key and consumer secret on the *lines 12 and 13* of `sampleApplication/src/app/assistants/main-assistant.js`, then package and install the application on your device or emulator.
53
54
54
55
---
55
56
56
57
# Using the library in your application #
57
58
58
59
At this time we have not this section finished, but you are welcome to browse the source of the sample application to see how we used the library in it. We tried to comment as much of the code that wasn't clearly obvious as to what it does or was doing.
59
60
60
-
You do not have to modify any of the xTwitter library files (/library/app/assistants/xtwitter-assistant.js /library/app/models/xTwitter/`*.*` /library/app/views/xTwitter/`*.*`) as everything can be configured thru the creation of the library object.
61
+
You **do not** have to modify any of the xTwitter library files (`/library/app/assistants/xtwitter-assistant.js /library/app/models/xTwitter/*.* /library/app/views/xTwitter/*.*`) as everything can be configured thru the creation of the library object.
61
62
62
-
You **do need** to include the code from the library/sources.json in your applications sources.json
63
+
You **do need** to include the code from the `library/sources.json` in your applications `sources.json`
63
64
64
65
Initial setup is simple, just put the following code inside your app using the objects below to initialize xTwitter.
65
66
@@ -74,7 +75,7 @@ Initial setup is simple, just put the following code inside your app using the o
74
75
secret: ''
75
76
};
76
77
77
-
In the main library file (/library/app/models/xTwitter/xTwitter.js), the last line of the file is where we have setup our **Twitter** variable, you can rename this or not even use it but we added it for simplicity sake and some of our sample code relize on it.
78
+
In the main library file (`/library/app/models/xTwitter/xTwitter.js`), the last line of the file is where we have setup our **Twitter** variable, you can rename this or not even use it but we added it for simplicity sake and some of our sample code relies on it.
78
79
79
80
Using that variable **Twitter** which we already have setup we can assign and start the library.
80
81
@@ -98,17 +99,20 @@ callback = the callback function to call when done (optional).
@@ -185,8 +193,9 @@ callback = the callback function to call when done (optional).
185
193
186
194
# Logout #
187
195
188
-
To logout a user (this only clears our data, the user must still unauthorize the app on Twitters Connections page), use the function: **Twitter.logout()**
189
-
In order to access the user's Twitter data we need to reauthorize to get the user's **token** and **secret**.
196
+
To logout a user (this only clears the library data, the user must still unauthorize the app on Twitters Connections page), use the function: **Twitter.logout()**
197
+
In order to access the user's Twitter data we need to reauthorize to get the user's **token** and **secret**.
198
+
Your application should also destroy any stored data regarding the users key and secret.
0 commit comments