Found 32 results for "cookbooks csharp"
The search executed in 0.001255511 seconds. That's fast.
![]() |
Gitana / 4.0 / Developers / Cookbooks / C# Cookbook
C# Cookbook Getting Started To get started with the C# driver, visit Cloud CMS C# Driver Page or the Github Page. It is written with .NET Core and can be used in any compatible project. You can install the driver via the command line: dotnet add package cloudcms
or from within Visual Studio: Install-Package cloudcms
Or by adding this to your .csproj file (you may have to adjust the version):
Score: 20.465887
|
![]() |
Gitana / 3.2 / Guide / Guide / CookbooksCookbooks We've put together the following Cook Books to help you get started coding using the Cloud CMS drivers. Content Modeling Cookbook C# Cookbook Go Cookbook Java Cookbook JavaScript (Legacy) Cookbook JavaScript 2.0 Cookbook Node.js Cookbook PHP Cookbook Python Cookbook REST API Cookbook Ruby Cookbook Scripting Cookbook
Score: 19.798134
|
![]() |
Gitana / 4.0 / Developers / Drivers / C#C# Driver Connect your .NET applications to Cloud CMS Latest Version Version undefined Date The Cloud CMS C# driver allows you to easily connect your C# and .NET applications to the Cloud CMS server. Currently supports the following functionality: Connect to and refresh access tokens with the API Read platform, branch, and repositories Read, query, search, create, update, and delete nodes Installation Install this driver as you would any other NuGet package. Command Line: dotnet add package clou
Score: 16.359606
|
![]() |
Gitana / 4.0 / Developers / Cookbooks / OverviewCookbooks We've put together the following Cook Books to help you get started coding using the Cloud CMS drivers. Content Modeling Cookbook C# Cookbook Go Cookbook Java Cookbook JavaScript (Legacy) Cookbook JavaScript 2.0 Cookbook Node.js Cookbook PHP Cookbook Python Cookbook REST API Cookbook Ruby Cookbook Scripting Cookbook
Score: 11.352817
|
![]() |
Gitana / 4.0 / Developers / Cookbooks / Go CookbookGo Cookbook Getting Started To get started with the Go driver, visit the Github Page or Package Page to view the source code, tests and basic usage examples. You can install the driver via the command line: go get github.com/gitana/cloudcms-go-driver Connecting to Cloud CMS There are two ways to connect with the Go driver: By finding a gitana.json file in your working directory, or by providing a config configuration. // Connect to CloudCMS using gitana.json in working directory session, err :=
Score: 9.168737
|
![]() |
Gitana / 4.0 / Developers / Cookbooks / PHP CookbookPHP Cookbook Getting Started To get started with the PHP driver, visit Cloud CMS PHP Driver Page or the Github Page. It can be used in any composer php project. To install with composer from the command line: composer require cloudcms/cloudcms Connecting to Cloud CMS You can connect to Cloud CMS with the php driver by providing a config array containing your keys, which can be obtained from a gitana.json file. It should look something like: { "clientKey": "{your client key}", "clientSec
Score: 9.168737
|
![]() |
Gitana / 4.0 / Developers / Cookbooks / REST API CookbookREST API Cookbook Getting Started This guide assumes that you have already installed an HTTP client with which you will be making requests. However, it is highly recommended that you look at our language drivers and you read about the one that you will be using in your application. Connecting to Cloud CMS CloudCMS uses OAuth2 to perform authentication, and as such to connect you will have to perform the authentication handshake manually to connect directly with the rest api. The specifics of thi
Score: 9.168737
|
![]() |
Gitana / 4.0 / Developers / Cookbooks / Python CookbookPython Cookbook Getting Started To get started with the Python driver, visit Cloud CMS Python Driver Page or the Github Page. It is written with Python 3 and can be used in any compatible project. You can install the driver via the command line: pip install cloudcms or pip3 install cloudcms Or add something like this to your requirements.txt: cloudcms==1.1.0 Connecting to Cloud CMS You can connect to Cloud CMS by providing a config file or the oauth variables directly. Using a Gitana JSON fi
Score: 8.527292
|
![]() |
Gitana / 4.0 / Developers / Cookbooks / JavaScript (Legacy) CookbookJavaScript (Legacy) Cookbook Getting Started To get started with the JavaScript driver, please visit the Cloud CMS JavaScript (Legacy) Driver Page. Connecting to Cloud CMS To connect, supply your API Keys as the argument to the connect() method. Gitana.connect({ "clientKey": "{clientKey}", "clientSecret": "{clientSecret}", "username": "{username}", "password": "{password}", "baseURL": "https://api.cloudcms.com" }, function(err) { var platform = this; }); If a pro
Score: 7.9697294
|
![]() |
Gitana / 4.0 / Developers / Cookbooks / Ruby CookbookRuby Cookbook Getting Started The Ruby driver is published to https://rubygems.org/gems/cloudcms Install the gem as you would any other Gem gem install cloudcms You may choose to use Bundler or other dependency management tool. Connecting to Cloud CMS To connect, create a file called gitana.json in a folder location readable by your application. For information on how to acquire this file, please read up on Acquiring your API Keys. Load the library containing the driver: require 'cloudcms' Conne
Score: 7.7174253
|
![]() |
Gitana / 3.2 / Guide / Guide / Cookbooks / C# Cookbook
C# Cookbook Getting Started To get started with the C# driver, visit Cloud CMS C# Driver Page or the Github Page. It is written with .NET Core and can be used in any compatible project. You can install the driver via the command line: dotnet add package cloudcms
or from within Visual Studio: Install-Package cloudcms
Or by adding this to your .csproj file (you may have to adjust the version):
Score: 7.528949
|
![]() |
Gitana / 4.0 / Developers / Cookbooks / Node.js CookbookNode.js Cookbook Getting Started To get started with the Node.js driver, please visit the Cloud CMS Node.js Driver Page. One thing to keep in mind is that the Node.js driver is based on the JavaScript driver. As such, they're pretty similar. That said, the Node.js driver can do a few important tricks that you can't do in the JavaScript driver. Connecting to Cloud CMS To connect, create a file called gitana.json in your application root. For information on how to acquire this file, please read up
Score: 7.480605
|
![]() |
Gitana / 4.0 / Developers / Cookbooks / Java Cookbook
Java Cookbook Getting Started To get started with the Java driver, please visit the Cloud CMS Java Driver Page. We recommend that you use Maven. At a minimum, you will need to add the following repository declaration to your pom.xml file:
Score: 7.257887
|
![]() |
Gitana / 4.0 / Developers / Cookbooks / JavaScript 2.0 CookbookJavaScript 2.0 Cookbook Getting Started To get started with the JavaScript driver, please visit the Cloud CMS JavaScript 2.0 Driver Page. This JavaScript driver, in contrast to the Cloud CMS JavaScript 1.0 Driver, fully supports ECMAScript promises, which makes it easier to seamlessly integrate with your javascript apps. Connecting to Cloud CMS You can connect and then use this driver in three different but equivalent ways: Async / Await Promises Callbacks Async / Await const cloudcms = require(
Score: 6.8500004
|
![]() |
Gitana / 4.0 / Developers / Cookbooks / Scripting CookbookScripting Cookbook Getting Started To get started with Server-Side Scripting, please visit the Server Side Scripting page. Code Samples Here are some code samples of common data structures to help you get started. Increment a Property With this example, we want to keep track of a counter that tracks the number of updates made to a node. After a node is created, if the user clicks update ten times, we want to have a counter on the node that indicates it has been updated ten times. This script sho
Score: 5.467333
|
![]() |
Gitana / 4.0 / Developers / Cookbooks / Content Modeling CookbookContent Modeling Cookbook Getting Started To get started with Content Modeling, please visit the Content Modeling Page. Code Samples Here are some code samples of common data structures to help you get started. Array of strings An array of strings. Definition: "prop1": { "type": "array", "items": { "type": "string" } } Form: "prop1": { "type": "array", "items": { "type": "text" } } An Object An object with two properties. Definition: "articleAvailability
Score: 5.232622
|
![]() |
Gitana / 4.0 / Forms / Cookbooks / OverviewCookbooks Further Reading Nested Tables
Score: 4.1252956
|
![]() |
Gitana / 3.2 / Guide / Guide / Overview_page Access Policies Actions Antivirus Scanning API API Keys Applications Application Server Attachments Auditing Authentication Binary Files Branches Bulk Import Command Line Conditions Content Modeling Cookbooks Deployment Docker Features Find Forms General GraphQL Integrations Multifactor Authentication Modules Narration Optical Character Recognition Platform Policies Projects Publishing Query Recognition Releases Reports Rules Scripting Search Security Single Sign On (SSO) Supported Stacks
Score: 3.720062
|
![]() |
Gitana / 3.2 / Guide / Guide / Cookbooks / Go CookbookGo Cookbook Getting Started To get started with the Go driver, visit the Github Page or Package Page to view the source code, tests and basic usage examples. You can install the driver via the command line: go get github.com/gitana/cloudcms-go-driver Connecting to Cloud CMS There are two ways to connect with the Go driver: By finding a gitana.json file in your working directory, or by providing a config configuration. // Connect to CloudCMS using gitana.json in working directory session, err :=
Score: 3.3945904
|
![]() |
Gitana / 3.2 / Guide / Guide / Cookbooks / PHP CookbookPHP Cookbook Getting Started To get started with the PHP driver, visit Cloud CMS PHP Driver Page or the Github Page. It can be used in any composer php project. To install with composer from the command line: composer require cloudcms/cloudcms Connecting to Cloud CMS You can connect to Cloud CMS with the php driver by providing a config array containing your keys, which can be obtained from a gitana.json file. It should look something like: { "clientKey": "{your client key}", "clientSec
Score: 3.3945904
|
![]() |
Gitana / 3.2 / Guide / Guide / Cookbooks / REST API CookbookREST API Cookbook Getting Started This guide assumes that you have already installed an HTTP client with which you will be making requests. However, it is highly recommended that you look at our language drivers and you read about the one that you will be using in your application. Connecting to Cloud CMS CloudCMS uses OAuth2 to perform authentication, and as such to connect you will have to perform the authentication handshake manually to connect directly with the rest api. The specifics of thi
Score: 3.3945904
|
![]() |
Gitana / 4.0 / Home / OverviewDocumentation Welcome to the Gitana Documentation Center. Gitana is a secure, enterprise-scale content platform that provides the fastest way to easily and continuously release approved, fresh content changes to your customer-facing APIs, web sites, applications and AI models. It provides everything that you need to power engaging digital experiences. It makes it easy for your business to create, manage and publish amazing content to your customers in real-time. Getting Started If you're new to
Score: 3.2304623
|
![]() |
Gitana / 3.2 / Guide / Guide / Cookbooks / Python CookbookPython Cookbook Getting Started To get started with the Python driver, visit Cloud CMS Python Driver Page or the Github Page. It is written with Python 3 and can be used in any compatible project. You can install the driver via the command line: pip install cloudcms or pip3 install cloudcms Or add something like this to your requirements.txt: cloudcms==1.1.0 Connecting to Cloud CMS You can connect to Cloud CMS by providing a config file or the oauth variables directly. Using a Gitana JSON fi
Score: 3.1332533
|
![]() |
Gitana / 3.2 / Guide / Guide / Cookbooks / JavaScript (Legacy) CookbookJavaScript (Legacy) Cookbook Getting Started To get started with the JavaScript driver, please visit the Cloud CMS JavaScript (Legacy) Driver Page. Connecting to Cloud CMS To connect, supply your API Keys as the argument to the connect() method. Gitana.connect({ "clientKey": "{clientKey}", "clientSecret": "{clientSecret}", "username": "{username}", "password": "{password}", "baseURL": "https://api.cloudcms.com" }, function(err) { var platform = this; }); If a pro
Score: 2.9092789
|
![]() |
Gitana / 3.2 / Guide / Guide / Cookbooks / Ruby CookbookRuby Cookbook Getting Started The Ruby driver is published to https://rubygems.org/gems/cloudcms Install the gem as you would any other Gem gem install cloudcms You may choose to use Bundler or other dependency management tool. Connecting to Cloud CMS To connect, create a file called gitana.json in a folder location readable by your application. For information on how to acquire this file, please read up on Acquiring your API Keys. Load the library containing the driver: require 'cloudcms' Conne
Score: 2.8088849
|