Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
11answers
43k 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 = ...
16
votes
2answers
5k 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 ...
13
votes
2answers
3k 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. ...
13
votes
1answer
5k 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 ...
12
votes
5answers
685 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: ...
11
votes
7answers
897 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 ...
11
votes
3answers
4k 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.
11
votes
2answers
2k views

Push Notification Device Token?

How to get Device Token from my iPhone Device?
10
votes
1answer
3k views

Token Authenticatable module in Devise

I'm starting using Devise in my Rails app, but the Token Authenticatable: signs in a user based on an authentication token (also known as "single access token") module puzzles me. Is the user ...
10
votes
2answers
4k 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 ...
8
votes
4answers
501 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. ...
8
votes
4answers
959 views

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

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

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
1answer
140 views

'nested' template `>>` issue is solved. What about `<::`?

C++0x addresses the issue of consecutive closing angle brackets in template-id's, like in vector<vector<int>>. No space is required between > > any more. Does C++0x address the ...
7
votes
9answers
6k 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 ...
6
votes
3answers
206 views

How to replace pairs of tokens in a string?

New to python, competent in a few languages, but can't see a 'snazzy' way of doing the following. I'm sure it's screaming out for a regex, but any solution I can come up with (using regex groups and ...
6
votes
1answer
1k views

Can you explain how google authenticator / wireless tokens work?

I've been curious as to how google generates one time log in tokens on an iPhone app without comminicatig with the server when the token is Assigned. The token changes every ten seconds. How does ...
6
votes
2answers
6k 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, ...
6
votes
1answer
757 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
9answers
4k 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 ...
5
votes
3answers
326 views

What is the best way to generate a login token? Is this method of authentication vulnerable to attack?

I have to implement login tokens in my Lithium (the PHP framework) based application. Two reasons: I want to have a "remember me" function. I also need a way of tracking logins on the server so that ...
5
votes
3answers
387 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 ...
5
votes
2answers
290 views

Drupal Autoresponder with Token Module

I'm using Drupal autoresponder module - and I want to use tokens so I can include the username who has subscribed within the emails being sent... Does anybody know how this can be achieved? Thanks ...
5
votes
2answers
2k 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 ...
5
votes
4answers
9k views

How do you tokenise / tokenize / split a delimited string in Perl?

How do you split a string e.g. "a:b:c:d" into tokens for parsing in Perl? (e.g. using split?) Looking for clear, straightforward answer above all (but do add any interesting tidbits of info ...
4
votes
1answer
242 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 ...
4
votes
2answers
170 views

What does the 'native' keyword mean in JavaScript?

I stumbled upon a function called v8Locale in Chrome's Developer Console. I was curious so I entered the function to get the source code, and it revealed the following code: function (a){ native ...
4
votes
3answers
425 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
213 views

Do login forms need tokens against CSRF attacks?

From what I've learned so far, the purpose of tokens is to prevent an attacker from forging a form submission. For example, if a website had a form that input added items to your shopping cart, and ...
4
votes
2answers
808 views

Get Google API Token

I need to get the google valid token to use Google APIs, but my code does not work. could you please advice me? $client_id = '495225261106.apps.googleusercontent.com'; $client_secret = ...
4
votes
3answers
447 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 ...
4
votes
3answers
90 views

zero width token?

I want to ask a very basic question about token, while reading about regex,the book tag caret(^) as a zero width token, can you please tell me what actually it means by zero width?
4
votes
3answers
562 views

ANTLR grammar: parser- and lexer literals

What's the difference between this grammar: ... if_statement : 'if' condition 'then' statement 'else' statement 'end_if'; ... and this: ... if_statement : IF condition THEN statement ELSE ...
4
votes
4answers
825 views

How to create a soap client without WSDL

i need to visit a secure web service, every request in the header need to carry a token. i know the endpoint to the web service, i also know how to create the token. but i cannot see the WSDL for ...
4
votes
1answer
241 views

Stringbuilder in CIL (MSIL)

I'm trying to generate code that takes a StringBuilder, and writes the values of all the properties in a class to a string. I've got the following, but I'm currently getting a "Invalid method token" ...
4
votes
2answers
3k views

How do I get a valid user token for CreateProcessAsUser?

I have an application that is running as normal user, and a service running as local system. I want the application to be able to tell the service to start the application again, once the service has ...
4
votes
5answers
2k views

How to split a text file into words?

I am working on a assignment where I am supposed to read a file and count the number of lines and at the same time count the words in it. I tried a combination of getline and strtok inside a while ...
3
votes
2answers
42 views

How to search and replace empty line after specific token?

I want to delete newlines after lines containing a keyword e.g. like modifiers private:,public: or protected: to fulfill our coding standard. I need a command line tool (Linux) for this, so please no ...
3
votes
4answers
424 views

Uncaught SyntaxErrror: Unexpected token ILLEGAL in chrome

I'm having a problem within the jQuery ajax function. The following code works fine in Mozilla but doesn't work in IE or Chrome, when I try to identify the problem using Developer Tools in chrome I ...
3
votes
1answer
122 views

In compiler construction, is a symbol the same as a token?

In compiler construction, when you talk about tokens, is a token the same like a symbol / just another term for a symbol? After some research I think to understand, that a token is a symbol with a ...
3
votes
6answers
244 views

how to remove substring from string c++

I have a string s="home/dir/folder/name" I want to split s in s1="home/dir/folder" and s2="name"; I did: char *token = strtok( const_cast<char*>(s.c_str() ), "/" ); std::string name; ...
3
votes
1answer
117 views

Bison: How to ignore a token if it doesn't fit into a rule

I'm writing a program that handles comments as well as a few other things. If a comment is in a specific place, then my program does something. Flex passes a token upon finding a comment, and ...
3
votes
2answers
163 views

Secure Token URL - How secure is it? Proxy authentication as alternative?

I know it as secure-token URL, maby there is another name out there. But I think you all know it. Its a teqniuque mostly applied if you want to restrict content delivery to a certain client, that you ...
3
votes
6answers
92 views

Does a compiler collapse classes which are identical in their structure?

I hope this isn't a duplicate of a question itself, but the search terms are so ambiguous, I can't think of anything better. Anyway, let's say we have two classes: class FloatRect { float ...
3
votes
2answers
614 views

Twitter Application Token Expires

I am connecting to twitter application and fetching the oauth token values and storing in database. I have found that the token values expires and each time I logs in with twitter i get a new token ...
3
votes
1answer
879 views

What is the proper URL to get an Auth Cookie from a GAE based Application

I have an android app I want to connect to a Google App Engine based server. I can get the auth token from the AccountManager. It seems the next thing I am supposed to do is talk to an auth page to ...
3
votes
1answer
377 views

Why is my string parsed differently via strtok on Windows and Linux?

In my program I'm cutting my char* with strtok. When I'm checking on Windows it's cut like I want, but when I'm doing the same thing on Linux, it's doing it wrong. Example : Windows: my char* ...
3
votes
1answer
2k views

Twitter oauth Request Token Response code 401

I am working on a twitter oauth login. However, when I do the request_token, the very first step, the response code always return 401 Unauthorized. I have searched a lot for a week, but I cannot ...
3
votes
2answers
8k 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" ...
3
votes
1answer
239 views

Recovering error tokens in parsing (Lemon)

I'm using Lemon as a parser generator, its error handling is the same as yacc's and bison's if you don't know Lemon. Lemon has an option to define the error token in a set of rules in order to catch ...

1 2 3 4 5 9