Biking Endorphines - How to secure our REST-API?

Security - why should I care?

Let's say that you will want to make your REST-API available for others to use it. Let's face it - you will need to restrict use of API based on users. If you don't do that, you may face the reality of having issues with your …

more ...


Biking Endorphines - REST-API within Django

What frameworks exists that supports REST-API within python ?

1. Django REST Framework

Quoting information from site:

Some reasons you might want to use REST framework:

- The Web browsable API is a huge usability win for your developers.
- Authentication policies including packages for OAuth1a and OAuth2.
- Serialization that supports both ORM …
more ...

Biking Endorphines - Test Database and REST API

Prerequisites

1. REST API vs SOAP API

So you are here to know what are the difference between API webservices?

Let's go with simple what are cons/pros of each solution!

1.A REST API Pros and Cons

PROS:
  • Lower amount of data needed to deliver actual content
  • Available two …
more ...

GPXReader - initial Endorphine Algorithm

Prerequisites

I've initially looked at my source code and Github and found that I've got few things a bit wrongly implemented (not using properly DRY principle.)

I've found also that gpxreader_test branch should be finally merged to master.

I've found also that android-initial startup as module that as not been …

more ...

GPXReader - Trackpoints Routepoints Waypoints

Trackpoints Routepoints and Waypoints

Before today's change, in my source code for tests I had only trackpoints. This worked pretty well, but then I've figure out, I need to be able to check if someone's going to use different type of *points. And obviously I added this to my steps-to-make …

more ...