https://github.com/amplience/dc-extension-bynder
Amplience Content Field Extension with Bynder to browse and select assets
https://github.com/amplience/dc-extension-bynder
amplience bynder content-field dynamic-content extension
Last synced: 8 months ago
JSON representation
Amplience Content Field Extension with Bynder to browse and select assets
- Host: GitHub
- URL: https://github.com/amplience/dc-extension-bynder
- Owner: amplience
- License: apache-2.0
- Created: 2023-11-06T11:51:40.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-29T11:56:13.000Z (almost 2 years ago)
- Last Synced: 2024-12-06T21:35:16.374Z (about 1 year ago)
- Topics: amplience, bynder, content-field, dynamic-content, extension
- Language: TypeScript
- Homepage: https://bynder.extensions.content.amplience.net/
- Size: 7.56 MB
- Stars: 0
- Watchers: 13
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# dc-extension-bynder
This extension allows customers to browse and select files from Bynder / WebDAM directly in the Amplience Dynamic Content CMS.

## 🏁 Quickstart
### Register Extension
This extension needs to be [registered](https://amplience.com/docs/development/registeringextensions.html) against a Hub with in the Dynamic Content application (Developer -> Extensions), for it to load within that Hub.
- Category: Content Field
- Label: Bynder
- Name: bynder (needs to be unique with the Hub)
- URL: [https://bynder.extensions.content.amplience.net](https://bynder.extensions.content.amplience.net)
- Description: Bynder asset picker (can be left blank, if you wish)
- Initial height: 200
> Note: You can use our deployed version of this extension (builds from the "production" branch) -
[https://bynder.extensions.content.amplience.net](https://bynder.extensions.content.amplience.net)
As this is an open source project you're welcome to host your own "fork" of this project. You can use any standard static hosting service (Netlify, Amplify, Vercel, etc.) if you wish. Further information can be found on the [developing and building locally](./docs/developing+building-locally.md) and [support](./support.md) page.
#### URL options for Extension Setup
- Amplience hosted (if you are not self hosting which points to our 'production' branch): `https://bynder.extensions.content.amplience.net`
- Self hosted: This will be your main brand deployment URL
- Development: This will either be `http://localhost:3000` of your dev branch deployement url

### Extension Permissions Settings
Under the Permissions tab, select the following:

API Permissions:
- ✅ Read Access
- ✅ Modify Access
Sandbox Permissions:
- ✅ Allow Same Origin
- ✅ Allow Pop-ups
- ✅ Allow Pop-ups to escape sandbox
### Installation Parameters
Here is a sample installation parameters payload:
```json
{
"bynderConfig": {
"portal": {
"url": "{{YOUR_BYNDER_PORTAL_URL}}"
},
"assetTypes": ["image"],
"mode": "SingleSelect"
},
"amplienceConfig": {}
}
```
For more detailed information, please refer to the links below.
## 🌍 Useful Links
- [Usage](./docs/USAGE.md)
- [Configuration](./docs/CONFIGURATION.md)
- [Cards](./docs/CARDS.md)
- [Examples](./docs/EXAMPLES.md)
- [Automation](./docs/AUTOMATION.md)
- [FAQ](./docs/FAQ.md)
- [Contributing](./CONTRIBUTING.md)
- [Hosting](./docs/HOSTING.md)
- [Support](./support.md)
- [Licensing](./LICENSE)