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 ...
4
votes
5answers
11k views
string tokenizer in Java
I have a text file which contains data seperated by '|'. I need to get each field(seperated by '|') and process it. The text file can be shown as below :
ABC|DEF||FGHT
I am using string ...
3
votes
1answer
2k views
Latex - extract substring/ignore characters
I have the following problem. I have defined a macro, \func as follows
\newcommand{\func}[1]{% do something with #1
X #1 Y
}
I now want to define another macro
\newcommand{\MyFunc}[1]{
% ...
2
votes
1answer
2k views
jax-rs rest webservice authentication and authorization
I have a web application that needs to allow users using different webclients (browser, native mobile app, etc) to register. After signing in they can access restricted content or their own content ...
2
votes
2answers
2k views
Device Token for Push Notification
I am implementing a push notification service. I would need to create a database to store all the device tokens from the 4 mobile platforms. I want to organize them accordingly to their ...
2
votes
2answers
574 views
JavaCC lexical error on any type of whitespace
I cleary have the unicode whitespace characters defined in my SKIP token like so:
SKIP {
" "
| "\r"
| "\n"
| "\t"
}
However, when I run Java CC it parses all the tokens fine until I hit any of ...
2
votes
3answers
582 views
How to deal with overlapping character groups in different tokens in an EBNF grammar?
I'm using an LL(k) EBNF grammar to parse a character stream. I need three different types of tokens:
CHARACTERS
letter = 'A'..'Z' + 'a'..'z' .
digit = "0123456789" .
messageChar = ...
2
votes
3answers
1k views
identifier token keyword antlr parser
How to handle the case where the token 'for' is used in two different situations in the language to parse? Such as statement and as a "parameter" as the following example:
echo for print example
for ...
2
votes
2answers
3k views
rails in_place_edit: how do I pass an authenticity token?
I am trying to get in place editing working but I am running into this error:
ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken)
I understand that rails now ...
1
vote
1answer
378 views
Single use CSRF token generation and validation for cross server communication in PHP
I have searched a lot trying to find something for my purpose, however most solutions revolve around CSRF tokens that work in conjunction with session data. My purpose requires "time based" token for ...
1
vote
1answer
2k views
REST API authentication tokens
I'm building my first REST API from scratch and am trying to understand the best way to handle API tokens. I'm not talking about "user authentication" (I would be using OAuth for that). I'm talking ...
1
vote
2answers
194 views
PHP Token replaces html entities
I want to make certain words/strings like links if found in the text. I have a piece of code from php.bet which does that, but it also removes the beginning and end of tags from <a ...
1
vote
2answers
2k views
Nested strtok function problem in C
I have a string like this:
a;b;c;d;e
f;g;h;i;j
1;2;3;4;5
and i want to parse it element by element. I used nested strtok function but it just splits first line and makes null the token pointer. How ...
1
vote
3answers
2k views
Implementing a token authentication
Which are the steps must I follow to implement a token authentication in my web page?
Any summary or links will be appreciated.
I want to implement similar to Facebook or Google, first time client ...
1
vote
4answers
1k views
HTML Javascript Rich Text Box (IDE)
I am hoping to build an IDE in javascript that behaves much like gmail except the style will change automatically based on what they type as they type. The logic for this isnt where im struggling. Its ...
0
votes
5answers
4k views
Java web app security: adding tokens to requests
I'm looking for a method or current API that allows you to add on tokens to web app requests.
Maybe within the session but not persisted.
Or if you could help me by outlining an efficient method for ...
6
votes
3answers
4k views
C++ Tokenize String
I'm looking for a simple way to tokenize string input without using non default libraries such as Boost, etc.
For example, if the user enters forty_five, I would like to seperate forty and five using ...
6
votes
1answer
13k views
Batch file FOR /f tokens
Can anyone please explain exactly how the following code works, line by line. I'm really lost. I've been trying to learn how to use the FOR command but I don't understand this.
@echo off
for /f ...
5
votes
2answers
5k 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
5answers
138 views
How do I tokenise a word given tokens that are subsumed incompletely in the word?
I understand how to use regex in Perl in the following way:
$str =~ s/expression/replacement/g;
I understand that if any part of the expression is enclosed in parentheses, it can be used and ...
4
votes
3answers
907 views
Integrating Dwolla with PHP with their API
Foreword:
Okay I've used APIs in the past such as TwitterAPI but I always used a library and some documentation to assist me with connections, and retrieving tokens. I have a basic understanding of ...
4
votes
1answer
612 views
Why must we “change temporary credentials for token credentials” in OAuth?
Can't the server just "upgrade" the temporary credentials to token credentials and retain the same key and secret?
The client can then start doing authenticated calls right away after the recieving ...
4
votes
2answers
1k views
Querying lucene tokens without indexing
I am using Lucene (or more specifically Compass), to log threads in a forum and I need a way to extract the keywords behind the discussion. That said, I don't want to index every entry someone makes, ...
2
votes
0answers
218 views
Xcode 4.6 automatic entitlement not working - “no valid aps-environment”
I'm getting the famous error:
Failed to get token, error: Error Domain=NSCocoaErrorDomain Code=3000 "no valid 'aps-environment' entitlement string found for application" UserInfo=0x413be0 ...
2
votes
2answers
535 views
elasticsearch - Return the tokens of a field
How can I have the tokens of a particular field returned in the result
For example, A GET request
curl -XGET 'http://localhost:9200/twitter/tweet/1'
returns
{
"_index" : "twitter",
...
2
votes
1answer
100 views
NLTK CorpusReader tokenize one file at the time
I have corpus of several hundred of documents and I am using NLTK PlaintextCorpusReader to process these files. The only problem is that I need to handle one file at the time in for cycle so I could ...
2
votes
1answer
592 views
Why solr RemoveDuplicatesTokenFilterFactory dont work?
My schema.xml is splitting product name and then uses RemoveDuplicate to remove duplicated words after split.
<fieldType name="type_name" class="solr.TextField">
<analyzer ...
2
votes
5answers
2k views
Codeigniter ajax CSRF problem
I've made a simple autoload function that loads content when you scroll down on a website. However, there seems to be a few problems when i enable CSRF protection in Codeigniter.
I'm not using a ...
2
votes
1answer
513 views
Perl Oauth2 package
What is the best package to do OAuth2 based authentication.
I basically need to authenticate using a consumer key and secret key to get a consumer, and use a access token and secret to get a token. ...
2
votes
1answer
1k views
How can I manipulate token privileges in .Net?
I'd like to use C# to determine which privileges are assigned to my process/thread token, and adjust them as necessary. For example, in order for my program to restart the computer, it must first ...
1
vote
3answers
566 views
Phonegap/Pushwoosh Android retrieving Device id / Token
How to retrieve device id/ token at device registration? I am using Phonegap Pushwoosh example and it works fine. But I could not figure out how to retrieve the token at device registration ...
1
vote
1answer
64 views
Program using tokens and privileges
I want to create a C++ program with limited privileges. I made some research on the internet and found out that I have to create a token and then use the AdjustTokenPrivileges() method to alter its ...
1
vote
0answers
87 views
how to identify digits and expressions
i have been working on a simple lexical analyzer which generates lexemes and tokens
my program opens a .cpp file and from then it displays libraries,operators,variables,reserved words and data types,i ...
1
vote
2answers
3k views
How to get a Facebook access token for a page with no app or app secret
I am trying to automatically display wall posts from a Facebook page another website. I can use the Graph API explorer to get one manually. When I use the generated token in my code all is well. The ...
1
vote
2answers
844 views
Remove Cookie issue
I have a cookie save a token when a user logs into www.example.com and then it redirects them to example.com/desktop or example.com/mobile depending on what device they're using. When they log out of ...
1
vote
2answers
422 views
When its Necessary to Protect Forms with Token (CSRF attacks)?
As much as I understand, web developer should create token and put it in hidden field of form to prevent CSRF attacks. Also, he should save the same token in a session and then, when form is submitted ...
1
vote
4answers
1k views
Ignore parentheses with string tokenizer?
I have an input that looks like: (0 0 0)
I would like to ignore the parenthesis and only add the numbers, in this case 0, to an arraylist.
I am using scanner to read from a file and this is what I ...
1
vote
1answer
380 views
Antlr (lexer): matching the right token
In my Antlr3 grammar, I have several "overlapping" lexer rules, like this:
NAT: ('0' .. '9')+ ;
INT: ('+' | '-')? ('0' .. '9')+ ;
BITVECTOR: ('0' | '1')* ;
Although tokens like 100110 and 123 can ...
1
vote
1answer
2k views
What encoding is the device token for APNs in?
Is it possible to get the Device Token returned from the application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken method? Since I'm not very good ...
1
vote
2answers
1k views
Login to application with GET/POST token
I work on a Symfony web application which has a standard login form. To allow users to login more easily we want to give them a link which logs them in directly. I've already build a way to get a ...
1
vote
3answers
1k views
C Programming: Preprocessor, macros as tokens
I'm trying to do something that is conceptually similar to this, but can't seem to get it to work (error shown at end) any ideas?
#include <stdio.h>
int main( int argc , char const *argv[] )
{
...
0
votes
5answers
78 views
strtok() issue: If tokens are delimited by delimiters,why is last token between a delimiter and the null '\0'?
In the following program,strtok() works as expected in the major part but I just can't comprehend the reason behind one finding.I have read about strtok() that(Source):
To determine the beginning and ...
0
votes
3answers
146 views
JavaCC using input as a 'token'
I've been puzzling over this for days and searching doesn't seem to give any results. Makes me wonder if it's possible. For example:
funct functionNAME (Object o) { o+1 };
The point is that The ...
0
votes
1answer
222 views
Paypal : invalid token only in DoExpressCheckoutPayment method
I'm starting to work with PayPal and my first work is to debug it on our website.
Actually when we go to the end of an order, it works fine but we get a stack in the logs : "Invalid token (#10410: ...
0
votes
4answers
332 views
Using strtok in C++
I'm trying to read a file which has input(time and price) as: 12:23:31
67 12:31:23 78 [...] I created a struct which holds values of hour,
minutes and seconds. I used strtok to tokenize the individual ...
0
votes
2answers
286 views
Java: How to get Scanner to match the first occurence only and skip if it has been matched before
I have a list of strings consisting of tokens separated by spaces stored in an ArrayList. I need to scan if the tokens in string 1 are present in string 2. I managed to use Scanner to scan for the ...
0
votes
2answers
349 views
Reset Struts2 Token?
I have a token interceptor to block double submitting a form which works great, but I'm looking to reset the token under circumstances.
Essentially what I've got in the page is a list of criteria and ...
0
votes
4answers
2k views
Javascript syntax error unexpected token illegal
function queue_instructions(){
var input_message = "Commands
w? Shows whos on the waitlist
w+ Adds yourself to the waitlist
w- Removes yourself from the waitlist
w++ Moves ...
0
votes
1answer
1k views
Auth token facebook php error
It's weird because on my canvas page for my facebook app I get all these php errors about my auth_token and then it redirects and works as it should. Can someone help me figure this out por favor? ...
0
votes
1answer
1k views
using tokeninput jquery plugin on more than one input on a page
I'm using the jquery tokeninput plugin from loopj.com Here is my JS File:
$(document).ready(function() {
// Token input plugin:
$("#issuer").tokenInput("/issuers.json",{
...
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 ...

