Richard Linhart
Member since Mar 28, 2016
- Profile: /members/13123-richard-linhart.htm
- Comments: 5
Recent Blog Comments By Richard Linhart
-
JSONWebTokens.cfc - A Small ColdFusion Module For JSON Web Tokens
Posted on Mar 29, 2016 at 4:31 PM
Well, I got it to work with .NET, but ColdFusion isn't playing nice with .NET now. Calgon, take me away!... read more »
-
JSONWebTokens.cfc - A Small ColdFusion Module For JSON Web Tokens
Posted on Mar 28, 2016 at 10:18 PM
My public key is 1024 bytes, and RSASigner.cfc is yelling at me because it is too long. This is the error. A quick Google of the issue has demonstrated that this is not an uncommon issue. java.security.InvalidKeyException: IOException: DerInputStream.getLength(): lengthTag=127, too big Unfortuna... read more »
-
JSONWebTokens.cfc - A Small ColdFusion Module For JSON Web Tokens
Posted on Mar 28, 2016 at 8:57 PM
@Clayton, Thank you Clayton. This file did have the key I was looking for. Still no luck getting the CFC to operate properly. Will keep on trying and post my results once I get it to work.... read more »
-
JSONWebTokens.cfc - A Small ColdFusion Module For JSON Web Tokens
Posted on Mar 28, 2016 at 8:43 PM
@Clayton, Thank you for your assistance. Right now, I am having other issues, like how to find the public key of my Google public/private key pair. When a service account is created with domain-wide authority in the Google Developer console, it downloads a json file, supposedly with the public/pr... read more »
-
JSONWebTokens.cfc - A Small ColdFusion Module For JSON Web Tokens
Posted on Mar 28, 2016 at 7:51 PM
I am attempting to create a JWT for use with the Google Calendar API. According to the Google documentation, the JWT is composed of: {Base64url encoded header}.{Base64url encoded claim set}.{Base64url encoded signature}. The header is always: {"alg":"RS256","typ":&qu... read more »