0
votes
1answer
29 views

Why won't the Saml2SecurityHandler create a token using ReadToken from a string I've just created using WriteToken?

So I need to serialize a token to send to a service via a queue + NetMessageBinding in Azure. The token comes from ACS and after some jiggery pokery I have the Saml2SecurityToken and I can write it ...
0
votes
0answers
13 views

User access tokens are working with different application tokens

I have encountered a pretty weird issue that could lead to potential security concerns: I've declared one application per environment (development, test, production…), however user tokens work ...
2
votes
1answer
449 views

Facebook App Login - Exchanging code for an oauth access token is working only once

I'm using the URL below to get the auth token: https://www.facebook.com/dialog/oauth?client_id=CLIENT_ID&redirect_uri=RETURN_URL&scope=manage_pages,publish_stream This page will redirect to ...
0
votes
1answer
58 views

Session Token Authentication perl in cookie

I am working session authentication. I am passing session id as token in cookie header. I wish to get encrypted token. which cryptable method should i prefer. I am using Digest::SHA, i got this error ...
0
votes
1answer
358 views

struts 2 TokenInterceptor Form Tokens

In my web application, I am using Cookie Based session, and thus that session is being shared among all browser tabs, Is there a way to restrict user to have access of application in one tab at a ...
0
votes
1answer
268 views

Application level auth token for Facebook?

So I have an app that needs to access public info, but needs an auth token. Specifically, I want to get the comments from public pages, and that requires an access token. Ideally, I'd like some sort ...
1
vote
2answers
354 views

How to lock the token, Based on the time in asp.net?

Am using the following program for generate the Token,based on the time(current time).It was work properly,It means the token will be generate. public string GenerateToken() { ...
0
votes
1answer
1k views

Best way to get a long term facebook token?

I need a facebook token to search profile ids and then pre populate profile images. All I need is a user token without any special privileges, but the one I have keeps expiring. Whats the best way to ...
7
votes
1answer
2k views

Do Google refresh token expire?

I have used the refresh token several times in just a short period for testing purposes, but I wonder that, do Google refresh token expire? Or I can call the same refresh token to get another access ...
2
votes
9answers
2k views

Extend auth token without refreshing the page

Users want to use my facebook app for many hours without refreshing the browser. But token expires in 2 hours. Now I ask users to refresh the page but that's annoying. I don't want to ask offline ...
0
votes
4answers
348 views

Length of a security token

I'm using security tokens to create not guessable URLs like this (16 bytes, hex) http://example.com/something/private/b5f8c21a628e12b39786fb8ef9561d31 The token is something like a shared ...
3
votes
1answer
2k views

OAuth Request and Access Tokens

I want to implement oauth 1 in my website and I was just wondering if I have to change the request token once it was exchange to an access token? Thanks in advance
0
votes
1answer
1k views

Saving Facebook access_token in NSUserDefaults on iOS

iOS beginner here. I'm using the following code to save my facebook accessToken and expirationDate in NSUserDefaults: facebook = [[Facebook alloc] initWithAppId:@"225083222506272"]; [facebook ...