Installing is easy!
  1. Click Allow
  2. Click Install Now
  3. After downloading, Restart Firefox

Glue API: Interactions

Glue interactions are returned in one of two standard forms, as described in this document.

Basic Interaction

The most commonly returned interaction contains the title, image, action, type, objectKey, interaction source, and timestamp.

  • title - The title of the object
  • image - The URL of an image of the object
  • action - One of the following: Looked, Liked, Disliked, Comment, LikedComment, or Reply
  • userId (optional) - The userId associated with the interaction (for responses where userId was not a parameter)
  • type - The type of the object (paired with category names in /glue/categories)
  • objectKey - The unique identifier of the object. Can be used as a value for objectId parameters
  • source - URL of the source
  • timestamp - The timestamp when the interaction occurred
<interaction>
	<title>(Object Title)</title>
	<image>(Object Image URL)</image>
	<action>(Interaction)</action>
	<type>(Object Type)</type>
	<objectKey>(Object Identifier)</objectKey>
        <source>
            <name>(Interaction Source Name)</name>
            <type>(Interaction Source Type [optional])</type>
            <link>(Interaction Source URL)</link>
        </source>
	<timestamp>(Interaction Timestamp)</timestamp>
</interaction>

Additional properties

In certain cases, additional information may be included with the interaction:

userId

<interaction>
    <title>(Object Title)</title>
    <image>(Object Image URL)</image>
    <action>(Interaction)</action>
    <userId>(User ID)</userId>
    <type>(Object Type)</type>
    <objectKey>(Object Identifier)</objectKey>
    <source>
        <name>(Interaction Source Name)</name>
        <type>(Interaction Source Type [optional])</type>
        <link>(Interaction Source URL)</link>
    </source>
    <timestamp>(Interaction Timestamp)</timestamp>
</interaction>