Questions about authentication for RESTful services.
0
votes
0answers
14 views
Rest with oauth2
I'm using this library with my codeigniter rest service. Basically, I have a REST_controller, that is inherited, and checks for a valid token, using that library.
All I want is to provide an API to ...
1
vote
0answers
36 views
Codeigniter auth key for REST service
I'm writing a simple RESTful service, using Phil Sturgeon Rest Server. I want to protect my methods by using the API key provided with this library.
Unfortunately, this is not very well documented ...
0
votes
1answer
44 views
Security Issue in WCF jQuery AJAX Call via GET method
I'm consuming WCF Services through jQuery AJAX call using GET method.
Since I'm unable to get the WCF Call through jQuery AJAX using POST method work, I'm using GET method. With GET method, the URLs ...
0
votes
1answer
20 views
Not able to access Web API method using XMLHttpRequest but using Restclient Plugin and etc
I have run in to a problem. Please help with your expertise.
I am developing web solution for a company. They have provided me Web API Method (REST). This API is in their domain. I am too access this ...
0
votes
0answers
25 views
Zend Session Identity losing data
I have a problem. I lose SESSION when i want to get data by using $auth->hasIdentity():
This is my Bootstrap.php
`
public function _initSession(){
Zend_Session::start();
}
protected function ...
-2
votes
1answer
18 views
PHP Based Web Service [closed]
I would like to create a webservice in PHP.
That provides me some information about a client.
Here is my problem.
I want the user to be authenticated before returning any data.
So here is my ...
-1
votes
1answer
34 views
Appannie api basic authentication
I'm trying to access appannie.com's api. I can't seem to get past the authentication. Here's what I have, any thoughts?
<?php
$whmusername = "username";
$whmpassword = "password";
$query = ...
1
vote
0answers
13 views
Handling restful login without HTTP AUTH
I'm working on a web application, and I've decided to make serverside a(n almost) restful web service (using node.js).
I say almost restful, because while I would like to use resource paradigm, I ...
-2
votes
0answers
22 views
consume RESTful J2ee6 web service in android [closed]
Could someone help me to connect an android application to a web application using a restful web service , I already created the REST web service and it's working on my browser , I just want to ...
0
votes
1answer
42 views
How to use OpenID or OAuth for internal first-party authentication?
I am working on an internal authentication system for users of a set of of RESTful web applications. Our intention is that a user should be able to sign-on once via a web form and have appropriate ...
6
votes
2answers
134 views
Secured RESTful API that can be used by Web App (angular), iOS and Android
I have to lay out a plan to develop a RESTful API (Python/Flask) that could be used by our future web app (Angularjs) and mobile apps (iOS/Android).
I have been researching for three days and have ...
2
votes
1answer
102 views
What is the best practice for user authentication on a C# web api?
I am building a web API that provides data for some applications.
The scenario is something like a web api hosted on Server001 with the methods GET / POST / PUT / Delete available.
In Server002 is a ...
1
vote
1answer
107 views
What is an efficient way to create/manage RESTful API with grails?
I've built my first grails application. My URL mappings are what the default application provides:
static mappings = {
"/$controller/$action?/$id?"{
constraints {
// apply ...
0
votes
2answers
45 views
Cannot get object from Session
I have the following scenario:
I access to a web application - that makes use of spring security, create an object in session, let us say a cart with some entries.
I access the application using a ...
2
votes
1answer
116 views
How to secure a REST api between a single page app and a server?
I have 2 servers in place, one is responsible for the front-end application and the user authentication. This server is rendering a single page application coded in javascript. This javascript app is ...
0
votes
0answers
43 views
SSL Two-way authentication between Apache and Tomcat
I have two servers (in different hardwares) running the follow:
. 1 Apache w/ php client application
. 1 Tomcat w/ java webapplication
Currently the Php application calls Tomcat through RESTful ...
0
votes
1answer
63 views
how to return multipart-MIME type message
client code....
HttpPost httpPost = new HttpPost();
MultipartEntity multipartEntity = new MultipartEntity();
FormBodyPart xmlPart = new FormBodyPart("soap-req", new StringBody(returnXml(), ...
0
votes
0answers
17 views
Explanations on Hmac User Authentication
I'm trying to implement the authentication system explains in this article Hmac User Authentication.
I don't understand the following part :
Server sends back: let MESSAGE = ...
0
votes
1answer
105 views
User authorization on a rest service via an access token
I have a mobile application (HTML 5, JavaScript) and a Restful service (Java, Jersey) to cater the mobile application.
Mobile application sign in is handled via a Facebook (Sign in using Facebook ...
0
votes
0answers
27 views
IE - Ajax authentication with Web Service
I am trying to authenticate with an external RESTful web service that serves images. When authenticated successfully the webservice returns json with information regarding the user that just logged ...
0
votes
0answers
100 views
iOS authentication to RESTful API gives me 401 status with AFNetworking
When I make REST API call authentication using AFNetworking, I got error like
Error Domain=AFNetworkingErrorDomain Code=-1011 "Expected status code in (200-299), got 401" UserInfo=0x7533ac0 ...
1
vote
2answers
148 views
How to handle security/authentication on a DNN-based web API
I am building a REST API for a DotNetNuke 6 website, making use of DNN's MVC-based Services Framework. However, I don't have any background in authentication, so I'm not even sure where to start.
...
0
votes
1answer
49 views
Restful Authentication — how to log in a user without password
I've got a cross-website integration to handle. Basically I'm passing a param into the rails application and if it evaluates correctly ... then I'd like to log a user in.
Can this be done without ...
0
votes
1answer
151 views
Web API in SPA template returning status 401 Unauthorized when passing username and password
When testing the WebAPI authentication in the SPA template, I can create a user, sign in, and retrieve sample to-do's using this url from Google Chrome:
http://myhost.com:49688/api/TodoList
When I ...
0
votes
0answers
14 views
Using the Pinboard.in API - what am I doing wrong with the authentication URL?
As outlined here on the API page, an authentication URL looks like: https://user:password@api.pinboard.in/v1/method
But if I put my username in user, my password in password and my API key in api and ...
1
vote
1answer
98 views
Centralized Authentication Server OpenAM vs FreeRadius
The basic requirement is to centralize the authentication and authorization of multiple SaaS applications to ease development (each SaaS application using minimal code to authenticate against a single ...
0
votes
1answer
39 views
What is the correct flow when using oAuth with the Reso​urce Owners Password​s Credentials Grant​
i am looking to build a client to my RESTful hypermedia based API and after reviewing many options am learning towards oAuth* to become the de facto method for authorizing access to the API.
I think ...
0
votes
0answers
56 views
Unable to do Rest Authentication with JAX-RS
I have created an interceptor for java webservice as follow
public class AuthenticatorInterceptor extends AbstractPhaseInterceptor {
private Map<String, String> users;
@Required
public void ...
2
votes
1answer
75 views
security and authentication protocols
I was researching the topic of authentication protocols, specifically protocols that work well with JAVA and REST API, and had a question regarding the subject.
The architecture of the required system ...
0
votes
1answer
26 views
OAuth2 multiple servers accessing service
I have a server-side app that does some work with an API secured with OAuth 2.0. When I launch the app, I go through the OAuth authentication flow and get the access and refresh tokens.
Now, the ...
0
votes
0answers
78 views
authentication and authorization design in RESTful web application
I have an web application built using RESTful services (JAX-RS).
There are REST calls, and simple JSPs with js files to handle data.
Now I want to implement authentication and authorization in ...
2
votes
0answers
80 views
Possible to have a NodeJS app under iisnode authenticate with ASP.NET FormsAuthentication?
1) We have a NodeJS app that we need to host under IIS 7.5/Win2k8 R2.
2) We have other apps that already use ASP.NET FormsAuthentication.
3) The users that will use the NodeJS app are the same users ...
0
votes
1answer
527 views
Spring Security REST authorization
I'm tired to find how I can login by Spring Security REST json. I write backend for Android/iOS.Here is my security.xml:
<http use-expressions="true" create-session="stateless" ...
0
votes
1answer
63 views
Create product using Oauth & curl
Im trying to create product using RESTful Api. Achieved this functionality using RESTCLIENT firefox addon but failed using script. I can able to list products But im not able to create product using ...
0
votes
2answers
69 views
Implementing RESTful service and consume xml at the service and map it to a bean class
Can anyone please explain hot to implement RESTful service and post data in an xml and cnsume the xml at the service and map it to a java bean class? It would be better if an example can be posted. ...
0
votes
1answer
104 views
Enabling authentication realm in jetty 8
I tried to follow the offical tutorial to enable MD5 authentication for my only web-app running on jetty. Nginx manages ssl and redirects to jetty
I placed
<Call name="addBean">
...
0
votes
1answer
90 views
RESTful webservice with auth for mobile application
I have developed many stateless RESTful webservices for a mobile application in Java and they are working very well.
For example:
h t t p://.../api/coupon
h t t p://.../api/coupon/{id}
...
Now, I ...
0
votes
0answers
108 views
https Service with WCF or ASP.NET MVC web API
I am working on ASP.Net MVC 3.0 Applicaiton
I need to develop a service in this application, that will expose CRUD operations.
I learned that ASP.Net MVC has api Controllers that can also serve the ...
0
votes
0answers
54 views
HTTP Bearer with Sessions and subdomains
I am trying to build a single page web-application that can be accessed at client.domain.com. I have webservice apis exposed at api.domain.com (accessed by mobile app clients as well).
Using passport ...
0
votes
0answers
36 views
ASP external log in [closed]
This question may be very elementary, however, I am unable to find information that directly answer the questions that I have.
I am building an asp application in C# that will require the user to ...
0
votes
0answers
136 views
Authenticate REST WCF with third party login like Twitter/LinkedIn
I have Rest WCF service. And now I need to secure it by authorizing and authenticating using third party logins like Twitter/LinkedIn. I am a newbie with OAuth and securing a WCF.
I will be using ...
1
vote
0answers
128 views
Authenticate resteasy service using spring security
I have developed a restful web services using RestEasy.
Now I want to add some authentication features to the client when they invoke the service. e.g: they should login first.
First I just want ...
0
votes
0answers
26 views
Google Account when using GAE to build API
I am currently working on building a restful API. It expects to be accessible by both browser and phone app.
Now I have a problem when using Authentication.
For example, my API server is on ...
4
votes
4answers
374 views
What is the correct way to authorize and structure a RESTful backend
A lot of examples about RESTful Web Services do not take into account the problem that today many applications are multi-user.
Imagine a multi-user backend exposing a RESTful API. The backend data ...
0
votes
3answers
610 views
PHP RESTful Webservice with Slim Framework, Authentification needed or against statelessness?
I'm writing a RESTful Webservice with the Slim Microframework and use GET for reading data from a mysql database (select query) and also POST/PUT/DELETE for insert/update/delete rows in the database.
...
0
votes
0answers
96 views
Session-based authentication for a RESTful webservice in Glassfish
The Problem
I'm creating an application that runs on Glassfish 3.1.2.2 and exposes a RESTful API in an environment where authentication is expensive. Passing the credentials and authenticating every ...
0
votes
0answers
113 views
CakePHP - Change auth type for prefixed routes
I've got a CakePHP website, and am starting to build a RESTful API into it. It seems to me like it would be easiest to just build a second application on top of the same Cake core, but others have ...
6
votes
1answer
246 views
Symfony2 entity user provider overrides custom auth provider
My Symfony2 custom authentication provider now appears to be working.
User Provider
I almost used the FOSUserBundle but I don't even have email addresses for my users and I don't need the added ...
0
votes
1answer
323 views
Spring Security Remember-Me REST web service - how to return token back in the 200 response with the Persistant Token Approach
I have my rest web services secured with Spring Security. I'm returning the the appropriate responses (401 for failure, 200 for success, etc) via the various handlers. The client does not want to ...
0
votes
2answers
137 views
Symfony2 won't load custom authentication provider, loads DaoAuthenticationProvider
This is a continuation of my last question.
Hi,
I'm implementing, in a Symfony2 application, a custom authentication provider in order to authenticate against the Wordnik REST API.
On application ...
