Authentication is commonly understood as the act of asserting a user's or entity's identity, although in the wider sense it can refer to asserting the truthfulness of any kind of claim. Authentication, like encryption, is a major component in implementing computer security.
0
votes
0answers
2 views
Problems authorizing heroku app when sandbox disabled
I apologise if this has already been answered, I have searched but I am new to the world of facebook app development and since I have no idea what is causing the issue I don't really know what I'm ...
0
votes
1answer
6 views
Identity Server v2 Multiple Origin Login
I'm running thinktecture IdentityServer v2 with one Relying Party in my development environment (Windows 7 Professional Visual Studio 2012).
My relying party (www.myprotectedcustomersite.com) is an ...
0
votes
0answers
3 views
httpurlconnection basic authentication and session id
I am using http urlconnection to execute rest call.
the server requires authentication and indeed a popup comes up.
at this point the user is expected to type in user and password
the problem is that ...
0
votes
0answers
6 views
Download Redmine Gantt Chart PNG using Curl?
I'm attempting to obtain a copy of Redmine's Gantt chart PNG export using curl. It seems that HTTP Basic Auth does not allow me to access it and every request made returns "HTTP/1.1 406 Not ...
0
votes
0answers
9 views
express my own authentication without 401
This is a resume about an authentication method.
I tryed to use express.basicAuth, but it force browser to ask user and pass, and I need to use my own login page, like google, facebook yahoo...
Is ...
0
votes
1answer
6 views
Varnish and ESI HTTP AUTH
I'm very lost on this problem, and I don't know where could be the problem, so, I hope that you could help me.
I have an HTTP BASIC authentification with symfony, and I'm trying to reach an url which ...
0
votes
0answers
2 views
Auth by link algo
How does the user authentication on the website dropbox when you click on a link in software?
Are there any standards or algorithms?
Reference is generated each time a unique, while not required for ...
-1
votes
0answers
32 views
Simple HTML5 and AJAX PHP Authentication Scheme? [on hold]
After much researching about purely client-side authentication with AJAX for a PhoneGap app I am making, I thought of a simple authentication scheme for writing data through AJAX. I was wondering what ...
0
votes
0answers
3 views
Python perspective broker for client-server communication - Access the client info at the server without passing an additional parameter
We are using the python perspective broker for client-server communication. I would like to access the client user name and credentials at the server side. How do I access the client info at the ...
1
vote
0answers
46 views
Authentication PHP user/password
I was always using an authentication on PHP that worked perfectly. Looks like this:
function login()
{
header('WWW-Authenticate: Basic realm="Acceso restringido."');
header('HTTP/1.0 401 ...
1
vote
1answer
13 views
How does Basic Authorization Attribute works in MVC?
Here is my action
[BasicAuthorize]
public ActionResult Index()
{
// code goes here
}
Now if I want access the action, I should login to the Application.
It's fine, But my question is
How ...
0
votes
1answer
13 views
Zend 2.2 response in the Controller
I try to make an http authentiction for one of my module using Zend framework 2.2, my code is strongly inspired from the official documentation, in there is :
$request=$this->getRequest();
...
0
votes
0answers
7 views
How to configure Jenkins login with google apps
I had installed Jenkins in Ubuntu machine and making build successfully. I want to have authentication with help of Google apps. I feel it would be better, I searched the plugin respective to this, ...
0
votes
0answers
8 views
Amazon Authentication on Internet Website?
I need to create a website that utilizes Amazon authentication. The main reason is that I need to manage access to resources on this website stored as Amazon S3 objects and want to use Amazon ACL to ...
0
votes
0answers
18 views
Authenticating an Android app request in Tomcat
At the moment I have a Java web application running on Tomcat 6.0.26 and users authenticate themselves from a login page using FORM based security. Details on users and roles are based in a MySQL ...