Top "Api" questions

DO NOT USE.

Difference between an API and SDK

I am trying to explain to a non-developer the difference between an API an SDK. I need to explain why …

api sdk
Get a json via Http Request in NodeJS

Here is my model with a json response: exports.getUser = function(req, res, callback) { User.find(req.body, function (err, …

json node.js api httprequest
Hyphen, underscore, or camelCase as word delimiter in URIs?

I'm designing an HTTP-based API for an intranet app. I realize it's a pretty small concern in the grand scheme …

api url rest uri restful-url
Make REST API call in Swift

I'm trying to use Swift to make a GET call to a REST API, and have tried to follow numerous …

ios swift rest api http
App not setup: This app is still in development mode

I have followed the instructions here: The developers of this app have not set up this app properly for Facebook …

android ios facebook api web
Address validation using Google Maps API

I have a task to validate addresses entered into a system I am currently creating. The system requires that address …

api geolocation street-address postal-code
Are there any naming convention guidelines for REST APIs?

When creating REST APIs, are there any guidelines or defacto standards for naming conventions within the API (eg: URL endpoint …

api rest naming-conventions
JPA Criteria API - How to add JOIN clause (as general sentence as possible)

I am trying to construct queries dynamically, and my next target is add JOIN clauses (I don't know how can …

java api join jpa-2.0 criteria-api
REST API using POST instead of GET

Let's assume a service offers some funcionality that I can use like this: GET /service/function?param1=value1&param2=…

api rest post get
Call another rest api from my server in Spring-Boot

I want to call another web-api from my backend on a specific request of user. For example, I want to …

api spring-boot spring-data retrofit