Wolfram Language Paclet Repository

Community-contributed installable additions to the Wolfram Language

Primary Navigation

    • Cloud & Deployment
    • Core Language & Structure
    • Data Manipulation & Analysis
    • Engineering Data & Computation
    • External Interfaces & Connections
    • Financial Data & Computation
    • Geographic Data & Computation
    • Geometry
    • Graphs & Networks
    • Higher Mathematical Computation
    • Images
    • Knowledge Representation & Natural Language
    • Machine Learning
    • Notebook Documents & Presentation
    • Scientific and Medical Data & Computation
    • Social, Cultural & Linguistic Data
    • Strings & Text
    • Symbolic & Numeric Computation
    • System Operation & Setup
    • Time-Related Computation
    • User Interface Construction
    • Visualization & Graphics
    • Random Paclet
    • Alphabetical List
  • Using Paclets
    • Get Started
    • Download Definition Notebook
  • Learn More about Wolfram Language

PacletCICD

Tutorials

  • GitHub Actions Quick Start

Guides

  • Continuous Integration and Deployment
  • Custom CI/CD Workflows
  • Workflows

Tech Notes

  • License Entitlements and Repository Secrets

Symbols

  • BuildPaclet
  • CheckPaclet
  • CreatePublisherToken
  • ExampleDirectory
  • GitHubSecret
  • PublisherTokenObject
  • SubmitPaclet
  • WorkflowEvaluate
  • WorkflowExport
  • WorkflowJob
  • WorkflowJobQ
  • Workflow
  • WorkflowQ
  • WorkflowStep
  • WorkflowStepQ
  • WorkflowValue

Other

  • ResourcePublisherToken
  • WolframScriptEntitlementID
Wolfram`PacletCICD`
CreatePublisherToken
​
CreatePublisherToken
[]
creates a token for the current
$CloudUserID
and
$PublisherID
that can be used for some authentication with the resource system.
​
​
CreatePublisherToken
["name"]
gives the token the specified name.
​
Details and Options

Examples  
(8)
Basic Examples  
(3)
Load the PacletCICD package:
In[1]:=
Needs["Wolfram`PacletCICD`"];
​
Create a publisher token using default settings:
In[1]:=
token=
CreatePublisherToken
[]
Out[1]=
PublisherTokenObject
Token:
hUxrPYCBiAcJLZdb••••••
Creator: richardh-testing-1@example.com

Use the token for authentication with the resource system:
In[2]:=
CloudDisconnect[All];​​ResourceSystemClient`$PublisherToken=token;
In[3]:=
ResourceSystemClient`ResourceSystemExecute["UserPublishers"]["User"]
Out[3]=
richardh-testing-1@example.com
In[4]:=
$CloudUserID
Out[4]=
None
Compare to a normal unauthenticated request:
In[5]:=
ResourceSystemClient`$PublisherToken=None;
In[6]:=
ResourceSystemClient`ResourceSystemExecute["UserPublishers"]
ResourceObject
:You must connect to the Wolfram cloud to use the resource. Please use CloudConnect to establish a connection with the Wolfram cloud.
Out[6]=
$Failed
Copy a string representation of the token to the clipboard in order to use it as
a workflow secret
:
In[7]:=
token["TokenString"]//CopyToClipboard
Cloud authentication is required for any token modification:
In[8]:=
CloudConnect[]
Out[8]=
richardh-testing-1@example.com
Delete the token:
In[9]:=
DeleteObject[token]
Out[9]=
Success
✓
Message: The token was successfully deleted.
Tag: TokenDeleted

​
Create a named publisher token:
In[1]:=
token=
CreatePublisherToken
["MyExampleToken"]
Out[1]=
PublisherTokenObject
Token:
c6Y2TeTgNDSt9zB2••••••
Name: MyExampleToken

Retrieve the token by name:
In[2]:=
PublisherTokenObject
["MyExampleToken"]
Out[2]=
PublisherTokenObject
Token:
c6Y2TeTgNDSt9zB2••••••
Name: MyExampleToken

In[3]:=
DeleteObject[token]
Out[3]=
Success
✓
Message: The token was successfully deleted.
Tag: TokenDeleted

Options  
(4)

Possible Issues  
(1)

SeeAlso
PublisherTokenObject
 
▪
CreateLicenseEntitlement
TechNotes
▪
License Entitlements and Repository Secrets
RelatedGuides
▪
Workflows
""

© 2025 Wolfram. All rights reserved.

  • Legal & Privacy Policy
  • Contact Us
  • WolframAlpha.com
  • WolframCloud.com