Includes : Orkut [BETA]

By w35l3y Last update Nov 29, 2009 — Installed 368 times.

Script Summary: Orkut Function



Version: 1.0.2.0

Copyright: 2009, w35l3y (http://gm.wesley.eti.br/includes)

License: GNU GPL

PayPal - The safer, easier way to pay online!

FOR SCRIPTERS/PROGRAMMERS only

If you are neither scripter nor programmer, you're discouraged to install this script directly.

Implementing

// @require        http://userscripts.org/scripts/source/56489.user.js
// @require        http://userscripts.org/scripts/source/54389.user.js
// @require        http://userscripts.org/scripts/source/54987.user.js
// @require        http://userscripts.org/scripts/source/62957.user.js

Examples

Orkut.Community.Forum.Topic.insert({
	"parameters" : {
		"commId" : "...",
		"subjectText" : "...",
		"bodyText" : "..."
	},
	"callback" : function(params)
	{
		// ...
	}
});
Orkut.Community.Forum.Topic.Message.insert({
	"parameters" : {
		"commId" : "...",
		"topicId" : "...",
		// "subjectText" : "...",
		"bodyText" : "...",
	},
	"callback" : function(params)
	{
		// ...
	}
});
Orkut.Community.Forum.Topic.Message.delete({
	"parameters" : {
		"commId" : "...",
		"topicId" : "...",
		"messageId" : "..."
	},
	"callback" : function(params)
	{
		// ...
	}
});
Orkut.Community.Forum.Topic.delete({
	"keys" : ["...", "..."], // list of topicIds to be removed
	"parameters" : {
		"commId" : "..."
	},
	"callback" : function(params)
	{
		// ...
	}
});