forked from g8rswimmer/go-twitter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updated readmes * updated v2 readme * added max results check for user tweet timeline * added max results check for user mention timeline * added content type for the tweet hide replies * updated comment for the delete user retweet * updated the list meta data with optional parameters * added the optional data from the update * took at the header for content type
- Loading branch information
1 parent
bc067b1
commit f8a6937
Showing
5 changed files
with
93 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
## Examples | ||
To run all examples, the user is required to provide their developer account credentials. The library does not share any credentials. | ||
|
||
### Tweet | ||
The following examples demonstrate the tweet APIs. | ||
|
||
#### Lookup | ||
The tweet lookup API example is located [here](./tweet/lookup/main.go). | ||
|
||
#### Recent Search | ||
The tweet recent search API example is locate [here](./tweet/recent-search/main.go). | ||
|
||
#### Filtered Search | ||
The tweet filtered search API example is locate [here](./tweet/filtered-search/main.go). | ||
|
||
#### Sampled Search | ||
The tweet sampled search API example is locate [here](./tweet/sampled-search/main.go). | ||
|
||
#### Hide Replies | ||
The tweet hide replies API example is locate [here](./tweet/hide/main.go). | ||
|
||
### User | ||
The following example demostrate the user APIs | ||
|
||
#### Lookup by ID | ||
The user lookup API example is located [here](./user/lookup-id/main.go) | ||
|
||
#### Lookup by User Name | ||
The user lookup API example is located [here](./user/lookup-name/main.go) | ||
|
||
#### Following by User Id | ||
The user following API example is located [here](./user/following/main.go) | ||
|
||
#### Followers by User Id | ||
The user followers API example is located [here](./user/followers/main.go) | ||
|
||
#### Tweet Timeline by User Id | ||
The user tweet timeline API example is located [here](./user/tweets/main.go) | ||
|
||
#### Mention Timeline by User Id | ||
The user tweet timeline API example is located [here](./user/mentions/main.go) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters