REST (REpresentational State Transfer) is a simple stateless architecture that generally runs over HTTP. It is an "architectural style" that basically exploits the existing technology and protocols of the Web, including HTTP (Hypertext Transfer Protocol) and XML. REST is easy to use than the ...
2
votes
0answers
10 views
Web API 2 Controller for third party services for multiple organizations
I'm putting together some RESTful services using ASP.NET Web API. This is the first time I have done this, so I'm looking for general feedback on this controller to make sure I'm not doing anything ...
0
votes
1answer
53 views
Using basic REST API in Angular 1.x
I have built real-time markdown editor in order to learn AngularJS by practice. I think what I'm trying to do can be done a better way. Any suggestions appreciated. Here's my code:
...
3
votes
1answer
35 views
Extracting various URL parameters in Rest Service and then passing it to Builder class
I have a service which takes a lot of key value parameters in a URL. Only a few are mandatory and others are optional. It's up to the customer whether they want to set those optional parameters or ...
-1
votes
0answers
35 views
HAL HATEOAS library for java
This library allows you to serialize pojos in the HAL specification format. Review of the code as well as the guide and documentation is appreciated.
...
2
votes
0answers
99 views
Reusable REST service class for Angular2 in TypeScript
I am creating an Angular 2 web application using TypeScript. This application performs REST requests to a REST "service". For each REST resource in my service I create a separate "Service" class in ...
3
votes
1answer
59 views
Using Wreq and Lens libraries to query Prosper for account info
I am trying to create a program to manage my Prosper investments for me as an intro to Haskell project. I created a post a few weeks ago for some of the simpler backend calculations: Recommend Next ...
5
votes
2answers
37 views
Single class which holds response and error message
I am working on a library which will make HTTP call to my rest service basis on inputs passed to this library. And whatever response comes back from service whether it is successful response or ...
1
vote
0answers
70 views
Mobile app backend using Gin and Gorm ORM
I'm developing backend for my mobile app by using gin-gonic and gorm ORM (mysql). But I'm not sure api and db handle huge amount requests if clients increased. for example I'm using my db struct as ...
1
vote
0answers
260 views
JWT - Simple API example
I have created this fake API just because I want to learn how to use JWT. It is a simple unsigned token exchange with two methods call: login and adminPassword.
I've used ...
0
votes
1answer
49 views
Client for many similar kinds of REST requests
I have a class that makes calls to a Web API (Using RestSharp), which works fine but the code is super ugly. What would be the best way to refactor it? I thought of just doing a Facade pattern so all ...
1
vote
0answers
80 views
REST service API using Python Bottle
I am working on a sample REST service to study testing related aspects using the Python Bottle framework. I read a lot about REST but I do not have a lot of practical experience designing RESTful APIs ...
2
votes
0answers
54 views
REST proxy in Meteor
I built a simple proxy using Meteor and its Iron Router. It currently fails at passing through other than 200 or 500 status codes, which i guess suffices. Is this ...
1
vote
1answer
227 views
A more optimized / cleaner way of validating WCF input parameter using IParameterInspector
I'm having a WCF Rest service which does input parameter validation by using the IParameterInspector, before calling the actual service method. I have Implemented ...
2
votes
1answer
104 views
Simple and reusable system for user registration and tracking and auto-updates
I created a bunch of small and mostly internal WPF applications for my company - usually for some file manipulation etc. For these programs, I would like to start collecting user info - who uses them, ...
5
votes
2answers
270 views
Restful API Building: Dependency injection + factory patterns
I am learning OOP. I feel I have a grasp of basic dependency injection in that as a rule of thumb, you pass an object to a method rather than the parameters to create an object. As such, never create ...
7
votes
2answers
547 views
Registration, login and logout in a Grails application
I'm completely new to Groovy, but have many years of Java experience, and recently I have started working on a Grails application, currently it contains the following:
User and Person domain classes
...
2
votes
1answer
58 views
Collection of $_POST data
I have a backend API that I'm sure can a refactor, but I'm not exactly sure how to avoid repetition between the store method and the ...
5
votes
1answer
111 views
JavaScript API for REST
I have a REST API, which naturally you can just use HTTP calls (mainly Ajax) in order to send and receive data. I am building a layer of abstraction on top of the raw REST API for JavaScript ...
4
votes
1answer
60 views
Adding proper validations on all the parameters coming from the URL in Rest Service
I am working on a RestService in which my URL will take lot of parameters. Below are the parameters my URL will take:
UserId: ...
2
votes
1answer
114 views
File upload to web server using HttpRequestFutureTask
I am working on uploading files through Rest API. Tried my hand using single upload and works. I have modified to accommodate parallel uploads using Futures.
Will there be any chance that this code ...
5
votes
2answers
820 views
External API calls from a C#.NET client
I have a simple c# mvc client that calls an external api..here is my attempt
...
3
votes
2answers
36 views
REST service to list new, continuing, and terminated subscribers during some period
I have a use case which says:
Your REST service will consume a JSON object that contains a list of
emails for subscribers at the start of the subscription period, and a
list of subscribers at ...
4
votes
2answers
138 views
Fetching the definition of a word using a REST API
This is the code I'm using to GET the definition of a word from Wordnik's REST API. I don't want to ignore any error but this is causing the code to be ridiculously long. I'm new to Swift so I'd ...
6
votes
2answers
98 views
Controller for classrooms and students
The actions I'm wondering about are members, add_student, and remove_student. They work ...
2
votes
0answers
52 views
Restful API for parsing records
I'm trying to implement my own API. This code excerpt should show the basic working routines. The storage is temporary an in-memory-array and the only HTTP method for now is POST.
I outsourced the ...
-1
votes
1answer
72 views
0
votes
1answer
48 views
Creating a new REST user account
I am studying JavaEE and I have made my project for the learning experience.
I want to understand how best to write code from the point of view of architecture and use of relevant technologies. I am ...
7
votes
1answer
135 views
Small console app to execute some remote scripts
I'm learning F# and functional programming, from a background in C# and imperative/OOP. I've ported a small, one-off console app from C# to F#. The port worked (the app behaves the same way), but I'd ...
3
votes
2answers
382 views
REST API using PHP
I am trying to write an REST API using php from scratch which I am gonna use to play with Angular.js. It is working fine now and I need your opinions on the things I have done in this code to improve ...
2
votes
0answers
401 views
Get username from active directory if you know active directory Id in SharePoint
I have created JavaScript code using REST API for getting the username of a SharePoint user from an active directory if you know the ID. Please suggest any improvements.
...
3
votes
1answer
4k views
Authentication system - AngularJS & Ionic Framework
I am building a small mobile app using ionic framework and angularJS. It will consume a Restful Web Service that requires authentication (User token). This means I need to keep my users token by ...
4
votes
1answer
336 views
Throttling REST requests in C#
I'm rather new to C#, and found relevant subclassing examples surprisingly hard to come by. I've whipped up this class that appears to work, but am pretty sure this is not optimal:
...
2
votes
1answer
4k views
PHP/Phalcon RESTful API architecture
I'm building a RESTful API in PHP using the Phalcon framework. The API will consist of multiple modules (e.g. api.example.com/mail/users, api.example.com/web/users, etc). So I want to put all module ...
1
vote
2answers
178 views
Angular Todo Lists - Factories? Controllers?
I have an angular app using a restful API which works, but I know is structured poorly.
I'm using a projectService (factory) to do all interfacing with the REST ...
1
vote
1answer
84 views
Converting a wrapper object to a value object
I have ChannelWrapper and Channel Value Object. I want to convert each and every field of ChannelWrapper to Channel Value ...
1
vote
1answer
161 views
Mapping/parsing database table data to output data
I have currently implemented this simple example of a database to output for a REST API to show the way information is being parsed, mapped and serialized starting from database data converting it to ...
1
vote
1answer
3k views
Using callbacks in a Restangular service
I have a project built with AngularJS and using Restangular in my services to handle API requests. The problem is I haven't found a good way to test the services which I think has turned into a bit of ...
5
votes
2answers
9k views
Using RestTemplate with HttpComponentsClientHttpRequestFactory in a multithreaded environment
I am working on a project in which I need to make an HTTP URL call to my server, running RESTful service, which returns the response as a JSON String. I am using ...
1
vote
1answer
7k views
Using RestTemplate for HTTP request timeout
I am using RestTemplate to make an HTTP call to one of my service and I would like to have timeout for my HTTP Request:
...
6
votes
1answer
97 views
User persistence and login flow
I have a Java project that copies files and folders to a user's space on the cloud service using a RESTful API. The login design is getting very complicated, and I wanted advice on how to ...
3
votes
1answer
95 views
RESTful workaround
I met the RESTful ideology and I fell in love with it. However the only request methods supported by HTML forms so far are GET and ...
3
votes
2answers
4k views
RESTEasy client that should use generics
I have written some code using RESTEasy to handle RESTful service calls and parse the response XML into relevant JAXB annotated classes. At the moment I have seperate methods for each return type:
...
5
votes
1answer
253 views
Java secured cookie - security issues?
I tested the play framework the last days and had mixed feelings about it. In the end, I don't use play for my new REST project. I use http://www.sparkjava.com as minimal server setup.
But I really ...
11
votes
1answer
1k views
Simple AngularJS controller for REST API
We record software builds from our build machine into a database and for practice purposes I'm building a little web dashboard for it.
The API is REST (WebApi) and provides access to query for ...
6
votes
3answers
344 views
Executing a URL using RestTemplate
I am working on a project in which I construct a URL with a valid hostname (but not a blocked hostname) and then execute that URL using RestTemplate from my main ...
3
votes
1answer
222 views
Neo4J Rest Javascript wrapper
As a toy project, I started evaluating the Neo4J graph database and its Rest interface. I'm trying to write a simple graph visualization in JavaScript. In daily business I'm a Java developer and maybe ...
3
votes
1answer
261 views
Constructing a URL for execution using RestTemplate
I am working on a project in which I construct a URL with a valid hostname (but not a blocked hostname) and then execute that URL using RestTemplate from my main ...
6
votes
2answers
710 views
Lock for preventing concurrent access in client data
I am trying to implement lock by which I don't want to have reads from happening whenever I am doing a write.
Here is my ClientData class in which I am using ...
3
votes
1answer
762 views
Making a call to a server running a RESTful service
I am working on a project in which I am making a call to one of my servers using RestTemplate which is running a RESTful service and getting the response back from ...
3
votes
1answer
137 views
Perl wrapper library (written using Moose) for a REST API
I wrote a wrapper library for a REST API (https://semantics3.com) in Perl using the Moose library. I would like to gather some feedback on it (mainly on the OOP part since I am new to moose), before ...