Tagged Questions
0
votes
1answer
8 views
Facebook get username without requesting authentication
I have tried countless examples from all around.. Is there any real way to get the current users name in a fan page app using the JavaScript sdk without a pop up requesting authentication?
Here is my ...
0
votes
1answer
17 views
Security in MVC4 partial postback
I have a MVC4 application that we would like to use in another platform. Our current security includes some custom data in the header on the http request and I was curious what other people did to ...
0
votes
0answers
21 views
Cannot post in an Express + Passport app / Authentication test
I am trying to use Passport as an authentication middleware with Express - and Angular, if it matters. I have just started to know these frameworks and I experiment with a simple test login in the ...
0
votes
1answer
28 views
PHP HTTP Authentication Failing To Authenticate
I am creating a web application in PHP for a server that does not have SSL support. If you want to brag about how good SSL is for authentication, do it somewhere else. I am using HTTP Authentication ...
0
votes
0answers
27 views
Android Phonegap Facebook login keeps asking to authenticate
I'm making a Phonegap application with a Facebook login. Everything works fine, but I have to authenticate every time I start the app. I use the original Phonegap Facebook plugin.
index javascript:
...
0
votes
1answer
24 views
j_security_check with ajax
EDIT: url is culprit I think. In working login.html case I got in log:
FINE: Security checking request POST /SesamaMaven/protected/admin/j_security_check
And in AJAX-version I got:
FINE: Security ...
0
votes
0answers
43 views
Website Crawler / Downloader with javascript authentication [closed]
I'm a Computer Science student looking to download a set of pages/resources from my CS webpage. Instead of doing this one by one I would like to have some sort of crawler that given a source link will ...
0
votes
1answer
17 views
how to implement pusher presence authentication callback in javascript
I have set my pusher object for the destination authentication request
Pusher.channel_auth_endpoint = '/php/pusher_auth.php';
Is here a js callback event so that I could display an ajax loading gif ...
0
votes
1answer
23 views
Authenticate websites that are using my service through iframe
I have a service that I provide to different websites. For the website to use the service they implement a javascript that triggers a lightbox with a iframe in it.
The problem is I don't want any ...
0
votes
1answer
77 views
Error Uncaught TypeError: Cannot set property 'onclick' of null
Im having error on the Facebook Javascript "Uncaught TypeError: Cannot set property 'onclick' of null " line 187 and line 187 is:
" button.onclick = function() {"
All the code is:
<script ...
1
vote
0answers
30 views
Javascript/CouchDB controlling user login logout
I'm struggling to grasp the concept of the best way to implement a user login/logout with JavaScript and CouchDB.
I'm used to creating user login/logout control using server side code that creates a ...
0
votes
0answers
35 views
Authenticate external javascript requests
I have a piece of javascript that I want to implement on multiple thank-you pages of webshops to transport data to a php script (via jsonp) on a HTTPS server. Is there any way to authenticate the ...
1
vote
1answer
191 views
Angular.js $http.post TypeError: Cannot read property 'data' of undefined
Angular.js v1.0.6
When making an $http.post and receiving a non 200 resposne (401 in this case)
$http.post('http://localhost:3030/auth/login', {
username: 'username',
password: 'password'
})
...
0
votes
1answer
82 views
401 when trying to implement CORS for SharePoint
I would like to access listdata.svc (a sharepoint service) located on domainA.contoso.com from a web application located on domainB.contoso.com - Authentication seems to be an issue.
When attempting ...
0
votes
0answers
65 views
REST API Authentication from Javascript in the browser
I'm playing around with writing a stateless, REST based API that I plan to consume from a couple of different places, one of which will be a single-page Javascript webapp. The idea is basically to ...