Hi.
Recently I have developed new titanium module for photo sharing in "Pinterest". This module helps you to sharing images in pinterest. Currently this module only for android.
Email : prakashmca.m@gmail.com
Blog : http://www.learnappcelerator.blogspot.com
Recently I have developed new titanium module for photo sharing in "Pinterest". This module helps you to sharing images in pinterest. Currently this module only for android.
Download module from here Pinterest - Android Module
Pinterest Module
Description
This module is used to share the photos in pinterest from titanium.Accessing the pinterest-android Module
To access this module from JavaScript, you would do the following:var pinterest = require("learnappcelerator.pinterest");
The pinterest variable is a reference to the Module object. setClientId("clientId");
This is an required Field. You should login into developer.pinterest.com and register you appname. you can get client ID.pinterest.setClientId("xxxxxxx"); //replace with your client ID
setDebugMode(flag);
This property is optional. If you want to get error logs in console set this as true.pinterest.setDebugMode(true);
pinterest.createPinterest()
This method used to create the pinIt button.Usage
var pinterest = require("learnappcelerator.pinterest");
pinterest.setClientId("xxxxxxx");
pinterest.setDebugMode(true);
var pin1 = pinterest.createPin({
width: 150,
height: 90,
top: 100,
left: 150,
imageUrl:"http://placekitten.com/400/300",
baseUrl:"http://placekitten.com",
description:"kitten image!"
});
win.add(pin1);
Author
Author Name : M. PrakashEmail : prakashmca.m@gmail.com
Blog : http://www.learnappcelerator.blogspot.com
No comments:
Post a Comment