A token is a string of characters, categorized according to the rules as a symbol (e.g., IDENTIFIER, NUMBER, COMMA). The process of forming tokens from an input stream of characters is called tokenization, and the lexer categorizes them according to a symbol type. A token can look like anything that ...

learn more… | top users | synonyms (1)

37
votes
2answers
15k views

C preprocessor and concatenation

I am trying to write a code, where name of functions are dependent on the value of a certain macro variable. To be specific, I am trying to write a macro like this: #define VARIABLE 3 #define ...
32
votes
2answers
12k views

Creating C macro with ## and __LINE__ (token concatenation with positioning macro)

I want to create a C macro that creates a function with a name based on the line number. I thought I could do something like (the real function would have statements within the braces): #define ...
30
votes
2answers
12k views

How to get a Token from a Lucene TokenStream?

I'm trying to use Apache Lucene for tokenizing, and I am baffled at the process to obtain Tokens from a TokenStream. The worst part is that I'm looking at the comments in the JavaDocs that address my ...
33
votes
7answers
27k views

Unable to get access token from Facebook. Got an OAuthException says “Error validating verification code”

I am using java and the purpose of my demo application is simple: Update user status. I followed the Server-side Flow on page http://developers.facebook.com/docs/authentication. I got the auth dialog, ...
10
votes
3answers
5k views

Get refresh token google api

I can't get my refresh token with my code. I can only get my access token, token type etc., I have followed some tutorials like putting access_type=offline on my login url echo "<a ...
28
votes
2answers
10k views

Using Devise tokens to log in, is this built in?

So, I'm trying to use tokens with Devise (version 1.0.3 with Rails 2.3.8) to let a user log in, but I'm not entirely sure where to begin. ...
23
votes
1answer
18k views

Implementing OAuth provider in Java

What is the fastest/easiest way to get an OAuth provider running in Java? Specifically, I need to authorize third-party apps to access certain web services (I'm thinking token authentication using ...
7
votes
3answers
10k views

PHP form token usage and handling

I'm a beginner working on a login script in PHP. This is the form token statement that I have so far: $_SESSION["form_token"] = md5(rand(time (), true)) ; The statement is issued just after the ...
33
votes
3answers
18k views

What is token based authentication?

I want to understand what token-based authentication means. I searched the internet but couldn't find anything understandable.
23
votes
13answers
60k views

Facebook graph API - OAuth Token

I'm trying to retrieve data using the new graph API, however the token I'm retriving from OAuth doesn't appear to be working. The call I'm making is as follows; $token = ...
8
votes
9answers
6k views

What is the fastest way to Parse a line in Delphi?

I have a huge file that I must parse line by line. Speed is of the essence. Example of a line: Token-1 Here-is-the-Next-Token Last-Token-on-Line ^ ^ Current ...
15
votes
1answer
16k views

WCF Authentication with custom ClientCredentials: What is the clientCredentialType to use?

I had to ditch the basic WCF UserName/Pwd security and implement my own custom client credentials to hold some more info beyond what is provided by default. I worked throughthis MSDN article, but I'm ...
3
votes
3answers
5k views

PHP: Preventing Session Hijacking with token stored as a cookie?

I'm working on an RIA in PHP. To try to prevent session hijacking I introduced a token, generated at login, based off a salt, ISO-8601 week number and the user's IP. $salt = "blahblahblah"; ...
9
votes
5answers
35k views

Error: Uncaught SyntaxError: Unexpected token <

For some reason, I'm getting this error message: Uncaught SyntaxError: Unexpected token < For this line of code: title: '<img src="/images/text/text_mario_planet_jukebox.png" ...
6
votes
2answers
617 views

Division/RegExp conflict while tokenizing Javascript

I'm writing a simple javascript tokenizer which detects basic types: Word, Number, String, RegExp, Operator, Comment and Newline. Everything is going fine but I can't understand how to detect if the ...
0
votes
2answers
414 views

Rest token authentication with HTTP header

This is an existing system with a login screen, now I expose some services as REST service. I build an authentication-token login system for this Rest(jersey) service. User sends username-password ...
1
vote
1answer
443 views

REST Web Service authentication token implementation

I'm implementing a REST web service using C# which will be hosted on Azure as a cloud service. Since it is a REST service, it is stateless and therefore no cookies or session states. The web ...
15
votes
7answers
1k views

Is There A Fast GetToken Routine For Delphi?

In my program, I process millions of strings that have a special character, e.g. "|" to separate tokens within each string. I have a function to return the n'th token, and this is it: function ...
17
votes
9answers
14k views

https URL with token parameter : how secure is it?

On our site, we provide to users a simulation based on their private information (given through a form). We would like to allow them to get back on their simulation results later, but without forcing ...
4
votes
1answer
3k views

Split a string into words by multiple delimiters in C++

I have some text (meaningful text or arithmetical expression) and I want get it and put different words into a vector. If I had certain delimiter, I'd use: std::stringstream ...
4
votes
3answers
156 views

Is using microtime() to generate password-reset tokens bad practice

In PHP I've noticed some frameworks make use of the microtime() function to generate password reset tokens as in: $token = md5(microtime()); Is this a security issue? If the attacker is able to ...
4
votes
1answer
2k views

Token-Based Authentication in WCF

I am creating a website which will contain both ASP.NET pages and a Flash applet. I want to encapsulate my business logic in a WCF service which will be exposed through two endpoints: One ...
3
votes
2answers
1k views

In Drupal, how to change the values passed to Pathauto?

I have Pathauto configured to generate an alias based on the title of a node, for a specific content type. The problem is that I want to make small changes in this title before Pathauto uses it to ...
2
votes
2answers
5k views

Extending Access Token Expiration not functioning

I am at the intermediate level in php and am new with facebook development. I have looked through the facebook documents and Stack Overflow previous comments. All I basically wanted to do was let the ...
1
vote
2answers
764 views

Windows Batch loop though variable with dynamic token count

In my Windows batch file I have some variable with a various number of strings. For exapmle: set string="-start" "-end someOption" I count the numbers of a String the following way: Set count=0 ...
1
vote
1answer
2k views

Facebook access token can not be extended

i am using the facebook android sdk, which i just downloaded from github. i understand that the access token is just valid for a very limited time and needs to be extended every time the app gets ...
0
votes
2answers
63 views

Error in the output of my flex file

I've written a .l file and want to output the contents in "c17.isc". But there is an error I don't know why. I've given the file I plan to read, the flex file and the execution result. This is the ...
6
votes
3answers
2k views

iOS Enterprise developer Account: get device token

I have used the iOS development account for creating apns ssl certificate for sending push notification to iOS device for development purpose.I can get the device token using objective c sample code ...
11
votes
3answers
9k views

Push Notification Device Token?

How to get Device Token from my iPhone Device?
15
votes
3answers
4k views

Using auth_token from request headers instead from POST/PUT parameters with Rails 3 / devise

I need to use token based authentication in a Rails 3.1 API in conjunction with the most recent version of devise. No problem so far. Now I do not want to append my :auth_token to the POST/PUT ...
12
votes
5answers
3k views

tokens in visual studio: HACK, TODO… any other? [closed]

what tokens do you find useful in visual studio? (visual studio 2010 → environment → task list → tokens) currently i have only: HACK - low REVIEW - high TODO - normal WTF - high (only these - ...
8
votes
2answers
9k views

Best way to create a TOKEN system to authenticate web service calls?

I'd like to create a web service architecture that can be called by various platforms such as mobile devices, winforms applications, iphone, blackberry, you name it. So going with something like WCF ...
10
votes
1answer
2k views

Authenticating requests from mobile (iPhone) app to ASP.Net Web API (Feedback requested on my design)

I'm designing a web site that will have a mobile companion (initally iPhone only). The web site will be an ASP.Net MVC 3 application. I'll also have an ASP.Net Web API site (MVC 4) to expose services ...
13
votes
3answers
4k views

How to transparently renew the Facebook access token while processing a service method which uses Facebook API calls?

I have a WCF service which runs in IIS 7.5 and VS 2010. This service has some methods which internally use the Facebook C# SDK (version 4.1, not latest) in order to perform some GET and POST from/to ...
12
votes
4answers
1k views

Why is OAuth designed to have request token and access token?

In the OAuth protocol, a service consumer will ask a user to authorize a request token in the service provider domain, then exchanges the request token for a access token from the service provider. ...
10
votes
1answer
6k views

WCF how to pass token for authentication?

I have a WCF service which would like to support basicHttpBinding and webHttpBinding. When the client successfully login, server will generate a token for client to pass to server on all the request ...
3
votes
2answers
11k views

how to get Device Token using Iphone Application and other info about the device?

In my iphone application i want Device Token using the APN. How to get that using code ? Alos i want Other information about the Device User,its version and other info. How to get that using Code ? ...
13
votes
5answers
1k views

Is this sufficient to protect against a CSRF for an ajax-driven application?

I'm working on a completely ajax-driven application where all requests pass through what basically amounts to a main controller which, at its bare bones, looks something like this: ...
10
votes
1answer
2k views

Javascript cryptography library to sign form data in browser

I am looking for a JS crypto lib (similar to, say, OpenSSL's libcrypto) that facilitates digital signing of data in the browser. I want to sign form form data on the client side using a private key ...
6
votes
6answers
3k views

Splitting String C++

Hi in C++ if i have a string, how can I split this into tokens?
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 ...
3
votes
3answers
4k views

DOS batch script to parse CSV file and output a text file

I've seen a response on another page (http://stackoverflow.com/questions/6470570/help-in-writing-a-batch-script-to-parse-csv-file-and-output-a-text-file) - brilliant code BTW - : @ECHO OFF IF ...
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 ...
11
votes
2answers
654 views

how do you split a string with a string in C#

I would like to split a string into a String[] using a String as a delimiter. String delimit = "[break]"; String[] tokens = myString.Split(delimit); But the method above only works with a char as a ...
5
votes
4answers
1k views

Codeigniter CSRF token problem

I've made a simple signup/newsletter site, but I've got a weird problem. Some people get a error that says An Error Was Encountered The action you have requested is not allowed. I've already ...
4
votes
3answers
1k views

C Macro Token Concatenation involving a variable - is it possible?

I'm trying to define a macro to generate a token name, containing a variable. Basically, what I'm trying is this: #define GLUER(x,y,z) x##y##z #define PxDIR(x) GLUER(P,x,DIR) int main() { int ...
2
votes
1answer
757 views

Does PHP have an authenticity token like Rails?

Does PHP have its own version of the Rails authenticity token? <meta name="csrf-token" content="<%= form_authenticity_token %>" /> <meta name="csrf-param" content="authenticity_token" ...
1
vote
0answers
406 views

jQueryMobile, Phonegap and Device Token - iOS

I have my app working with JQueryMobile and PhoneGap... I can send Push Notifications without problems to the devices, but I don't know how associate an user account with a device token. I register ...
5
votes
1answer
2k views

FB SDK 3.0 Do I need to extend access token or is it automatic?

Based on http://developers.facebook.com/roadmap/offline-access-removal/ Exception (Section) 3: If I use the "newer" SDK, it'll save the access token for me and will extend it automatically. My ...
5
votes
3answers
775 views

List of “tokens” on Lucene 3

I'm new to Lucene, i started learning the version 3 branch and there's one thing i don't understand (obviously because i'm not experienced in the subject). In Lucene 2.9, if i wanted a list of ...

1 2 3