@joekun were you able to track this issue down? Thank you.
Post
Replies
Boosts
Views
Activity
also: https://developer.apple.com/forums/thread/677379?login=true
@JoeKun very exciting!
Joe - I just dowloaded Big Sur beta 7 and I am(still) seeing this error (using Xcode 12 beta 6).
Thank you!
chris
here's the node js script i use!bin $ cat generate_jwt.js
"use strict";
const fs = require("fs");
const jwt = require("jsonwebtoken");
const privateKey = fs.readFileSync("AuthKey.p8").toString();
const teamId = "<teamid>";
const keyId = "<keyid>";
const jwtToken = jwt.sign({}, privateKey, {
algorithm: "ES256",
expiresIn: "180d",
issuer: teamId,
header: {
alg: "ES256",
kid: keyId
}
});
console.log(jwtToken);