Additional Languages for Go1 Content Integration
This guide will show you how to update a Go1 partnered content integration to include content in languages other than English.
The Go1 Partnered Content Integration with Acorn, by default, only pulls in content from the Go1 library in English. To add content in different languages, follow the process below:
The setting is located in ac_partnered_content under the details column.
You can specify a language field with either a single string value, or an array of values matching the go1 supported languages using the ISO codes.
see language[] section for - https://developers.go1.com/api/rest/2025-01-01/learning-objects/#list
ISO codes here - https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
When no language is specified it only pulls "en" content like we did historically.
for example the language field can be
"language":"en"
or
"language":[ "en", "es" ]
Will look something like
{
"clientId": "XXXXXXX",
"clientSecret": "XXXXXXX",
"idPattern": "<span class=\"non_editable\">{id}</span>",
"language": ["es", "en"],
}