Was this article helpful?

socialize.sendNotification

Modified 12:42, 19 Jun 2013 by Tanya

Description

Sends a notification to a list of friends. Note: To send a notification to a Twitter friend, the friend must be following you and you must also be following the friend.

Note: This method is also supported in our REST API. If you wish to execute this method from your server, please refer to REST API > socialize.sendNotification.

Supporting Providers

The following providers currently support this operation: Twitter, LinkedIn, and Yahoo.

 

Syntax

gigya.socialize.sendNotification(params)

 

Method Parameters

The following table lists the params object members:

Required Name Type Description
Required recipients string
 or
Collection
The list of recipients that will receive this notification. There are two options of defining this list:
1. string: a comma separated list of UIDs representing recipients.
2. Collection: A collection of User objects representing recipients (as returned by the Friends Selector Plugin).
  body string The content of the notification.
The notification body should not include HTML tags. Links should be provided as simple urls, not <a> tags. For Example:
body: 'Check out this lovely site: http://www.myLovelySite.com'

Each social network uses a different format for links. Gigya identifies your links and converts them to the proper format corresponding to the social network.
  subject string The subject of the notification.
Optional callback function A reference to a callback function. Gigya calls the specified function along with the results of the API method when the API method completes.
The callback function should be defined with the following signature: functionName(response).
The "Response object Data Members" table below provides specification of the data that is passed to the callback function.
  cid string A string of maximum 100 characters length. This string is associated with each transaction and will later appear on reports generated by Gigya in the "Context ID" combo box. The cid allows you to associate the report information with your own internal data. For example, to identify a specific widget or page on your site/application. The "Context ID" combo box lets you filter the report data by site/application context.
Note: the value of this parameter overrides the value of the identical parameter in the global configuration object.
  shortURLs string Using this parameter you may determine whether to use Gigya's URL shortening service for URLs passed in the status parameter. The optional values for this parameter are:
  • 'always' (default): always shorten URLs.
  • 'whenRequired': shorten URLs when needed - when posting to Twitter, LinkedIn, and Yahoo where the status update is limited to 140 char.
  • 'never' - never shorten URLs.
When Gigya's URL shortening service is active, Gigya tracks all the traffic coming from the distributed URLs. In such cases the 'Referred Traffic' reports will be available to you.
Note: the value of this parameter overrides the value of the identical parameter in the global configuration object.
  context object A developer-created object that is passed back unchanged to the application as one of the fields in the response object.
  actionAttributes JSON object In Gamification your users receive points for actions they perform on your site, in this case sending a notification grants the user points. Action Attributes may be used to annotate actions with additional information, such as the section of the web site that generated the action. If you set here the actionAttributes, each time a user sends a notification, the action also receives an attribute, for example "tv-show":"glee", which can mean that the action was performed on the "Glee" page of the site. 

These action attributes are later used to display the GM Plugins filtered according to a certain attribute. For example, you can show the Leaderboard plugin only for top users on the "Glee" page.

This parameter receives a JSON object, comprised of a set or sets of a key (category) and a value or values, i.e.:
    {
        "<attribute1 name>": ["<attribute1 value1>", "<attribute1 value2>", ...],
        "<attribute2 name>": "<attribute2 value>",
        ...
    }
For example:
    {

        "tv-show": ["glee", "30rock"],
        "music": "pop"
    }
In this example the action receives three attributes: {"tv-show":"glee"}, {"tv-show":"30rock"}, and {"music":"pop"}. This parameter may receive a list of up to three sets of key and value entries per call. If more values are entered, only the first three will count and the rest will be ignored. The three sets of key and value can be one key with three values, or three keys with one value each, or two keys, one with two values and the other with one value. 
You can also choose to input attributes using a generic "Tags" key, with no category name, for example: {"tags": ["glee", "house", "pop"]}. In this case the action receives these three attributes: {"tags":"glee"}, {"tags":"house"}, and {"tags":"pop"}.

 

Response Object Data Members

Field Type Description
errorCode integer The result code of the operation. Code '0' indicates success, any other number indicates failure. For a complete list of error codes, see the Error Codes table.
errorMessage string A short textual description of an error associated with the errorCode for logging purposes.
operation string The name of the API method that generated this response.
context object The context object passed by the application as parameter to the API method, or null if no context object has been passed.

 

Code Sample

function printResponse(response) {  
    if ( response.errorCode == 0 ) { 					
        alert('Notification has been sent');
    }
    else {
        alert('Error :' + response.errorMessage);
    }
}

var params = {
    recipients: '_gid_+2tC3ZkFL&3er4hBQYa3PQ==' , 
    body: 'This is my message content', 
    subject: 'This is my subject',
    callback:printResponse
};

gigya.socialize.sendNotification(params);

Notes:
  • This sample is not meant to be fully functional code. For brevity's sake, only the code required for demonstrating the API call itself is presented.
  • To run the code on your own domain, add your Gigya API key to the socialize.js URL. A Gigya API key can be obtained on the Site Dashboard page on Gigya's website. Please make sure that the domain from which you are loading the page is the same domain name that you used for generating the API key.
  • In some cases it is necessary to connect/login the user to a provider? prior to calling the API method. You can learn more in the Social Login guide.

 

In the Send notifications page you will find a complete working example which uses socialize.sendNotification method. You may view the code, run it and view the outcome.

Tags

This page has no custom tags set.

Comments

You must to post a comment.

Attachments