|
| 1 | +# Multiple Brands |
| 2 | + |
| 3 | +RingCentral works with a number of [carriers and partners](https://developers.ringcentral.com/guide/basics/partner-compatibility) to deliver a cutting edge white labeled Cloud Communications service directly to their respective customers. This guide will show you how to create RingCentral Embeddable app for other brands. |
| 4 | + |
| 5 | +## AT&T Office@Hand |
| 6 | + |
| 7 | +### Adapter JS way |
| 8 | + |
| 9 | +* Use `adapter.att.js` to instead of `adapter.js` |
| 10 | +* Set `appServer` to `https://platform.ringcentral.biz` |
| 11 | + |
| 12 | +```js |
| 13 | +<script> |
| 14 | + (function() { |
| 15 | + var rcs = document.createElement("script"); |
| 16 | + rcs.src = "https://ringcentral.github.io/ringcentral-embeddable/adapter.att.js?appServer=https://platform.ringcentral.biz"; |
| 17 | + var rcs0 = document.getElementsByTagName("script")[0]; |
| 18 | + rcs0.parentNode.insertBefore(rcs, rcs0); |
| 19 | + })(); |
| 20 | +</script> |
| 21 | +``` |
| 22 | + |
| 23 | +### Iframe way |
| 24 | + |
| 25 | +Add `brand=att` and `appServer` in src query parameter: |
| 26 | + |
| 27 | +```html |
| 28 | +<iframe width="300" height="500" id="rc-widget" allow="microphone" src="https://ringcentral.github.io/ringcentral-embeddable/app.html?brand=att&appServer=https://platform.ringcentral.biz"> |
| 29 | +</iframe> |
| 30 | +``` |
| 31 | + |
| 32 | +## BT Cloud Work |
| 33 | + |
| 34 | +Use `adapter.bt.js` to instead of `adapter.js`: |
| 35 | + |
| 36 | +```js |
| 37 | +<script> |
| 38 | + (function() { |
| 39 | + var rcs = document.createElement("script"); |
| 40 | + rcs.src = "https://ringcentral.github.io/ringcentral-embeddable/adapter.bt.js"; |
| 41 | + var rcs0 = document.getElementsByTagName("script")[0]; |
| 42 | + rcs0.parentNode.insertBefore(rcs, rcs0); |
| 43 | + })(); |
| 44 | +</script> |
| 45 | +``` |
| 46 | + |
| 47 | +### Iframe way |
| 48 | + |
| 49 | +Add `brand=bt` in src query parameter: |
| 50 | + |
| 51 | +```html |
| 52 | +<iframe width="300" height="500" id="rc-widget" allow="microphone" src="https://ringcentral.github.io/ringcentral-embeddable/app.html?brand=bt"> |
| 53 | +</iframe> |
| 54 | +``` |
| 55 | + |
| 56 | +## TELUS |
| 57 | + |
| 58 | +Use `adapter.telus.js` to instead of `adapter.js`: |
| 59 | + |
| 60 | +```js |
| 61 | +<script> |
| 62 | + (function() { |
| 63 | + var rcs = document.createElement("script"); |
| 64 | + rcs.src = "https://ringcentral.github.io/ringcentral-embeddable/adapter.telus.js"; |
| 65 | + var rcs0 = document.getElementsByTagName("script")[0]; |
| 66 | + rcs0.parentNode.insertBefore(rcs, rcs0); |
| 67 | + })(); |
| 68 | +</script> |
| 69 | +``` |
| 70 | + |
| 71 | +### Iframe way |
| 72 | + |
| 73 | +Add `brand=telus` in src query parameter: |
| 74 | + |
| 75 | +```html |
| 76 | +<iframe width="300" height="500" id="rc-widget" allow="microphone" src="https://ringcentral.github.io/ringcentral-embeddable/app.html?brand=telus"> |
| 77 | +</iframe> |
| 78 | +``` |
| 79 | + |
| 80 | +## Other Brands |
| 81 | + |
| 82 | +For other brands, we are still customizing styles for them. Those users can use with default brand. |
| 83 | + |
| 84 | +### Adapter JS way |
| 85 | + |
| 86 | +```js |
| 87 | +<script> |
| 88 | + (function() { |
| 89 | + var rcs = document.createElement("script"); |
| 90 | + rcs.src = "https://ringcentral.github.io/ringcentral-embeddable/adapter.js"; |
| 91 | + var rcs0 = document.getElementsByTagName("script")[0]; |
| 92 | + rcs0.parentNode.insertBefore(rcs, rcs0); |
| 93 | + })(); |
| 94 | +</script> |
| 95 | +``` |
| 96 | + |
| 97 | +### Iframe way |
| 98 | + |
| 99 | +```html |
| 100 | +<iframe width="300" height="500" id="rc-widget" allow="microphone" src="https://ringcentral.github.io/ringcentral-embeddable/app.html"> |
| 101 | +</iframe> |
| 102 | +``` |
0 commit comments