Skip to content

Latest commit

 

History

History

dotnet

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Calling Mesh API with C#

Assuming that you have .NET core installed, run the example from this directory:

HOST={YOUR HOST} API_KEY={YOUR KEY} API_SECRET={YOUR SECRET} dotnet run

If you are using Windows, then run from Powershell:

$env:HOST = '{YOUR HOST}'; $env:API_KEY = '{YOUR KEY}'; $env:API_SECRET = '{YOUR SECRET}'; `
    dotnet run; Remove-Item Env:\HOST; Remove-Item Env:\API_KEY; Remove-Item Env:\API_SECRET