JSON Web Token (JWT, pronounced "jot") is an emerging type of token-based-authentication use in space constrained environments such as HTTP Authorization headers.
0
votes
0answers
21 views
Is there a way to use oauth jwt authentication for google webmaster tools?
I a trying to use Google Services' JWT authentication in a Node.js script meant to perform several requests via the Google Webmaster Tool's API https://developers.google.com/webmaster-tools/
I ...
1
vote
0answers
40 views
Implementing a claims-based security model to secure a WCF service
Currently, all of our web applications (and the WCF services they interact with) are run internally. Nothing is exposed to the web. We want to open up our web applications to the Internet and will ...
0
votes
0answers
52 views
how to verify JWT signature?
I want to authenticate Android users with a Go AppEngine backend,
I can easily get an ID-token in Android by following ...
1
vote
1answer
72 views
REST authentication / authorization using JWT federated identities
I am looking at developing an application that exposes services using REST. These services will be accessed via browser and non-browser clients. I expect that there will be a number of installations ...
0
votes
0answers
28 views
Browser window with error pops up when using azure access control from WPF client
I am currently implementing azure access control as our default authentication platform for a number of different applications that we support both WPF clients and websites.
I am seeing the following ...
0
votes
1answer
63 views
How to transfer a JSON web token to the client app?
Supposed I have a web application that needs to authenticate a user. Instead of doing it on its own, it redirects the user to a dedicated authentication service.
There the user logs in, and a JSON ...
0
votes
0answers
61 views
JWT Handler for .NET 4.5 throws error: GetIssuerName with single parameter is not supported
I've just implemented this JSON Web Token Handler for .Net 4.5 library described here:
...
1
vote
1answer
14 views
How is JWT related to OAuth?
I recently stumbled upon JSON Web Tokens (JWT), and as far as I have understood it, they are just a compact form of a token that can easily be serialized (as it is JSON).
Now, my question is: Are ...
0
votes
1answer
227 views
Asp.Net Web Api: Protecting with a token?
I would like to protect a asp.net web api service with a token. Now I know you would normally implement a STS server but I don't want to do that so what is my other options.
I was thinking about ...
0
votes
0answers
224 views
SharePoint 2013 SSO post to a page, automatic log in
SharePoint is but one web application in a larger security realm. I have already built an Identity provider site which issues JWT tokens, it works nicely with all our apps except SharePoint and its ...
1
vote
0answers
19 views
How to use “Restrict JWT Issuing option for Windows 8 apps” in Live Connect?
Based on the descriptions on http://msdn.microsoft.com/en-us/library/live/hh826544.aspx#restrict_jwt, I still don't know how to use this feature. My understanding is that:
I need to create two win8 ...
1
vote
1answer
64 views
Firebase PHP-API installation
To verify users for firebase I want to use https://github.com/firebase/firebase-token-generator-php which depends on https://github.com/firebase/php-jwt
But how to install?
I've checked out both ...
1
vote
1answer
67 views
Validating issuer of a security token encrypted with JSON Web Encryption (JWE)?
I've been reading the JSON Web Encryption (JWE) specification, with the latest draft being 08, as we're looking at supporting JSON Web Tokens (JWT) in our authentication server.
Using the asymmetric ...
0
votes
1answer
167 views
How do you extract a private-key string from a .p12 file?
I'm trying to access the Google Analytics API from a VB.NET server application. My app falls into the category of a "service account" application, so I'm not requesting credentials from the user--the ...
0
votes
1answer
82 views
“error” : “invalid_token: Could not parse auth token.” When generating JWT for Firebase in Clojure
Trying to write write a wrapper around the Firebase REST API (see https://github.com/cloudfuji/taika for the full source), and the auth token seems to be failing. The functions are simple wrappers ...
0
votes
1answer
241 views
Live Connect Authentication Token for use on Azure Mobile Services (REST)
I have a simple Windows Forms Application to try Live Connect and Azure Mobile Services. Not a Windows 8 Modern App.
I'm trying to make use of some sample code for Live Connect and have been able to ...
4
votes
4answers
708 views
How to configure MIcrosoft JWT with symmetric key?
I'm trying to configure my ASP.NET app to accept a JSON Web Token (JWT) that is signed with a symmetric key. The STS isn't capable of using certificates for this, so we're using their symmetric key ...
0
votes
0answers
13 views
is there a limit for the number of active server to server tokens?
is there a limit for the number of active server to server tokens (requested with JWT) ?
a new token is created for each JWT request..
to be more specific, in a clustered environment, do processes ...
8
votes
2answers
799 views
“Not sufficient permissions” google analytics API service account
I'm trying to fetch data with the Google Analytics API through service accounts.
I have been searching on stackoverflow how to do this and been using the exact same code found on several posts but ...
0
votes
0answers
116 views
Force.com Apex Code to generate Google API oAuth 2.0 JWT
I am trying to generate a JWT in Apex on Force.com but keep getting a 400 "error" : "invalid_grant". I've tried numerous variations, but just can't get a valid response. My clientEmailAddress is ...
1
vote
3answers
513 views
Using a JWT token with delegation (ActAs)
I have a working implementation of a Claims based authentication system implemented with WIF and .NET 4.5. It contains the usual pieces:
Custom STS with Passive and Active endpoints
Backend WCF ...
0
votes
0answers
114 views
Difference between client authentication and authorization grant in OAuth using JWT
I have been reading this spec for using JWT (JSON web tokens) with OAuth.
In 2.1 and 2.2, it says that JWTs can be used as Authorization Grants or Client Authentication.
From my understanding, ...
0
votes
1answer
702 views
Json Web Token example for Java
Is there a sample program in Java of HPW to create header, claim set for JWT (service account ) so that I get the Access token?
The following URL looks close:
...
0
votes
3answers
304 views
Exchange IP-STS JWT token for ACS JWT token
I have an azure ACS service, which trusts an IP-STS.
For an active scenario, I first get a JWT token from my IP-STS using username, password credentials. There is Oauth2 endpoint and everything works ...
1
vote
2answers
460 views
Google Service Account Http Error 500 - Python
I've been pulling my hair out trying to figure this one out, so I hope someone can help.
Seems like relatively straightforward code accessing a Google API endpoint with a Service Account- but I am ...
2
votes
2answers
218 views
Can I Use Service Account With Google Analytics?
Since few day I am trying to get user profile with my C# using Using OAuth 2.0 for Server to Server Applications with JWT.
For google drive i know that we can use server to server method, but i am ...
0
votes
2answers
880 views
Google API OAuth2.0 JWT returns 400 - Bad Request
I copied the code from post:
Google OAuth2 Service Account Access Token Request gives 'Invalid Request' Response
and tried to get my own OAuth2.0 / JWT authentication to work. But no matter ...
3
votes
1answer
200 views
Clojure, Servlet and JWT
EDIT: For a working sample, take a look at this demo project.
Disclaimer: I'm a total noob in building java web applications.
I'm trying to use JWT with Clojure but I simply don't know how deal with ...
3
votes
2answers
2k views
Google OAuth2 Service Account Access Token Request gives 'Invalid Request' Response
I'm trying to communicate with my app's enabled BigQuery API via the server to server method.
I've ticked all the boxes on this Google guide for constructing my JWT as best I can in C#.
And I've ...
2
votes
1answer
154 views
How do I return multiple identities in a token with Thinktecture.IdentityServer.45?
In the Thinktecture.IdentityModel.45 library, I can get a Microsoft.IdentityModel.Claims.ClaimsIdentityCollection by executing something like this:
Dim handler = New JsonWebTokenHandler()
...
2
votes
1answer
135 views
Is a service account the right credentials for querying google bigquery in node.js?
I have created a service account in the Google API Console, downloaded the .p12 file, and now I am trying to use https://github.com/hokaccha/node-jwt-simple to sign the request for a token.
Where/How ...
0
votes
0answers
121 views
JWT difference between ExpirationTime and ExpirationTime Claim
Using the JsonWebToken class from Thinktecture's Identity Model (4.5) tool set. The token has a property: ExpirationTime and a claim for Expiration. What is the difference between the two?
Just in ...
2
votes
1answer
2k views
Google oAuth 2.0 (JWT token request) for Service Application
I'm trying to implement Google oAuth 2 for service accounts described here: https://developers.google.com/accounts/docs/OAuth2ServiceAccount on UnityScript (or C# - that doesn't matter because they ...
0
votes
1answer
891 views
OAuth2 Authentication for “Google Service” returns “invalid_request”
I am attempting to form a json request to authenticate using oath2 specification for Google's "Service Account" authentication. I am using google's documentation here. It is using JWT. It seems that ...
9
votes
6answers
5k views
Is there a JSON Web Token (JWT) example in C#? [closed]
I feel like I'm taking crazy pills here. Usually there's always a million library and samples floating around the web for any given task. I'm trying to implement authentication with a Google "Service ...
25
votes
4answers
8k views
Service Applications and Google Analytics API V3: Server-to-server OAuth2 authentication?
I'm trying to make a server application to routinely pull Google Analytics data from my own GA account. Note, it is a personal, server-side application accessing my own data, i.e. there is no end-user ...
0
votes
1answer
222 views
Google in-app payments: howto to handle Google's postback JWT
Maybe its a stupid question but I'm not an advanced programmer. I've
have successfully setup In-App payments for my app but it only works
without using a postback url.
I've Google'd around many ...
1
vote
0answers
511 views
How do I use Google Wallet through PHP?
I am currently really the most stuck I've ever been, implementing Google Wallet with PHP. I've been studying it for the past two weeks with little to no luck.
I'm not the only one stuck in this ...
2
votes
0answers
2k views
Is it too soon to start implementing Google wallet? [closed]
Google Wallet In-App Payments, https://developers.google.com/in-app-payments/, developer documentation and tools are at the present best broken, incomplete, and/or lacking relevant information. I feel ...
0
votes
1answer
158 views
How to use goog.payments.inapp.buy with luciferous jwt?
reading this https://developers.google.com/in-app-payments/docs/tutorial
Quoted from the above page:
Because you sign the JWT using a secret key (the Seller Secret), you must generate the JWT using ...
1
vote
1answer
440 views
PHP postback url google wallet IAP
My postback php for google wallet in-app payments looks like this:
<?php
$payload = array(
"iss" => $sellerIdentifier,
"aud" => "Google",
"typ" => "google/payments/inapp/item/v1",
...
1
vote
2answers
490 views
Validating a JWT in node.js
I'm trying to parse and validate a JWT token in node.js based on this sample (authored in .NET): ...
