New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Yammer Specifics

Yammer Requirements

The proper functionality of the Yammer buttons requires the following properties of RadSocialShare to be set:

Known issues

Yammer Standard Buttons are created via external scripts from their network and therefore we cannot fully guarantee their correct functionality. It is possible to receive warnings about failed GET requests, for example:

This behavior is not related to RadSocialShare but the API that Yammer exposes and can be tested with the following code:

<script type="text/javascript">
    yam.config({ appId: "DATA-APP-ID" });
    if (yam.helper == undefined) yam.helper = { message: "" };
    yam.connect.actionButton({
        container: document.getElementById("embedded-like"),
        network: "NetworkPermalink",
        action: "like"
    });
</script>
<script type="text/javascript">
    yam.config({ appId: "DATA-APP-ID" });
    if (yam.helper == undefined) yam.helper = { message: "" };
    yam.connect.actionButton({
        container: document.getElementById("embedded-follow"),
        network: "NetworkPermalink",
        action: "follow"
    });
</script>

The example above is extracted from http://developer.yammer.com/connect/ and has been amended.

Localization

At the time of writing (February 2013) the Yammer buttons do not seem to support localization.

See Also

In this article