Skip to content
This repository was archived by the owner on Jan 7, 2023. It is now read-only.

Commit f80a128

Browse files
committed
more edits to the README
1 parent 7a7f81f commit f80a128

File tree

1 file changed

+22
-13
lines changed

1 file changed

+22
-13
lines changed

README.md

+22-13
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ Current features/functions:
3838

3939
## Notes on xAuth ##
4040

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:
4243

4344
1. [Register an application at Twitter](https://twitter.com/apps/new), and get your own consumer key and secret.
4445
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
4950

5051
## Trying out the sample application ##
5152

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.
5354

5455
---
5556

5657
# Using the library in your application #
5758

5859
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.
5960

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.
6162

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`
6364

6465
Initial setup is simple, just put the following code inside your app using the objects below to initialize xTwitter.
6566

@@ -74,7 +75,7 @@ Initial setup is simple, just put the following code inside your app using the o
7475
secret: ''
7576
};
7677

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.
7879

7980
Using that variable **Twitter** which we already have setup we can assign and start the library.
8081

@@ -98,17 +99,20 @@ callback = the callback function to call when done (optional).
9899
Twitter.authorize('username','password123',function (response) {
99100
if (response !== undefined && response.username !== undefined && response.token !== undefined &&
100101
response.secret !== undefined && response.authorized !== undefined && response.authorized === true) {
101-
// authorization successful
102+
// Authorization successful
102103

103-
// you will need save the following variables (in a cookie perhaps?)
104-
// we reuse the information during the library initilization and so that we do not have to reauthorize every time
104+
/*
105+
* You will need save the following variables (in a cookie, depot.. etc perhaps?)
106+
* We reuse this information during the library initialization and so that
107+
* we do not have to reauthorize every time
108+
*/
105109

106110
userKeys.username = response.username;
107111
userKeys.token = response.token;
108112
userKeys.secret = response.secret;
109113
userKeys.authorized = true;
110114
} else {
111-
// authorization failed
115+
// Authorization failed
112116
console.log('Authorization failed, error:'+response);
113117
}
114118
);
@@ -172,8 +176,12 @@ callback = the callback function to call when done (optional).
172176
{ screen_name: 'dawm' },
173177
function (response) {
174178
if (response !== undefined && response.error === undefined && response.following === true) {
175-
// note that response.following will return true since it was true when you made the call
176-
// if you unfollow the user a second time it will fail, since you are not following them.
179+
/*
180+
* Note that response.following will return true if successful. I don't know why Twitter
181+
* does this (API lag?) since you would think it should be false when successfully unfollowing.
182+
* --
183+
* If you unfollow the user a second time it will fail, since you are not following them.
184+
*/
177185
console.log('Unfollow successful');
178186
} else {
179187
console.log('Unfollow failed, error: "+response.error);
@@ -185,8 +193,9 @@ callback = the callback function to call when done (optional).
185193

186194
# Logout #
187195

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.
190199

191200
**Example**:
192201

0 commit comments

Comments
 (0)