Tumblr thread status microservice for RPThreadTracker
If you are looking for the back-end application web service API, please see http://www.github.com/blackjackkent/RPThreadTrackerV3.BackEnd.
If you are looking for the front-end Javascript application code, please see http://www.github.com/blackjackkent/RPThreadTrackerV3.FrontEnd.
This is a microservice called by RPThreadTrackerV3.FrontEnd to retrieve the current status of tracked threads on the Tumblr platform. It also provides an endpoint for retrieving recent news posts from the Tracker's news blog.
Request:
POST /api/thread HTTP/1.1
Host: {baseUrl}
Content-Type: application/json
[
{"postId": "62854047895", "characterUrlIdentifier": "cmdr-blackjack-shepard", "partnerUrlIdentifier": ""},
{"postId": "79443357041", "characterUrlIdentifier": "cmdr-blackjack-shepard", "partnerUrlIdentifier": "blackjackkent-test", "dateMarkedQueued": "2017-08-06T20:26:06.503Z"}
]
Response:
[
{
"PostId": "62854047895",
"LastPostDate": "2013-10-02T00:11:34Z",
"LastPosterUrlIdentifier": "cmdr-blackjack-shepard",
"LastPostUrl": "http://cmdr-blackjack-shepard.tumblr.com/post/62854047895",
"IsCallingCharactersTurn": false,
"IsQueued": false
},
{
"PostId": "122728533704",
"LastPostDate": "2015-12-28T16:21:07Z",
"LastPosterUrlIdentifier": "blackjackkent-test",
"LastPostUrl": "http://blackjackkent-test.tumblr.com/post/136117843415",
"IsCallingCharactersTurn": true,
"IsQueued": false
}
]
You will need to have the .NET Core SDK v.2.1.4 or later installed on your local machine to develop this application.
- Create a fork of this repository to your own GitHub account (https://github.com/blackjackkent/RPThreadTracker.BackEnd.TumblrClient/fork).
- Clone the forked repository to your local machine.
- Check out a new feature branch in your local copy of the code.
- Generate a set of Tumblr OAuth credentials.
- First, register your application here.
- Use the consumer key and consumer secret you just generated to generate an OAuth token and OAuth secret associated with your Tumblr account using the form here.
- Duplicate the file at
./RPThreadTrackerV3.BackEnd.TumblrClient/appsettings.secure.example.json
and name itappsettings.secure.json
, and update this new file with the consumer key, consumer secret, OAuth token, and OAuth secret that you just generated.
Once running, the application will be available at http://localhost:58075
.
The application uses XUnit and associated libraries for unit testing across all parts of the application. Any changes to the code should be appropriately unit tested to maintain code coverage. Test files should be added to the RPThreadTrackerV3.BackEnd.TumblrClient.Test
project following existing patterns.
You can run all unit tests using your preferred C# test runner. To generate a code coverage report, run ./coverage.sh
from the project root. The generated coverage information will appear in a folder called ./reports
.
This application has no external dependencies besides the Tumblr API. Make sure you have followed the instructions in Running the Application Locally
regarding setting up your Tumblr OAuth tokens.
- Commit your changes to your feature branch and push it to your forked repository.
- Open a pull request to the repository at https://github.com/blackjackkent/RPThreadTracker.BackEnd.TumblrClient.
Rosalind Wills – @blackjackkent – rosalind@blackjack-software.com
https://github.com/blackjackkent/RPThreadTracker.BackEnd.TumblrClient