Latest Posts

Angular

Angular

 Coming Soon............

Read more »

Google Cloud Messaging (GCM) in Node.js

Google Cloud Messaging (GCM) in Node.js



Introduction

GCM (Google Cloud Messaging) is a service provides by google that is used to send data to android device. It is free service from google that helps to send data from servers to android applications.

How to get Google APIs Key:

1. Create a new project from Google APIs Console page.
2. After creating project note down project id from url. Later it will be used as a sender id.
3. After that click on Services.
4. Once you are done, Click on API Access and write down the API Key. This key will be used for sending request to GCM Server.

How to use GCM service in our server side.

Install: npm install android-gcm

Simplest Code :

var gcm = equire('android-gcm');
var gcmObject = new gcm.AndroidGcm('API Key');  //get from Google APIs Console page.  

var message = new gcm.Message({ 
 registration_ids: ['device tokens1','device tokens2'],  
 data: {   
   title: 'message title here',    
  message: 'your message here' 
 }});  
   gcmObject.send(message, function(err,response){   
     callback(err,response);  
   });
});



Source : Google Cloud  

Read more »

Get Latest Tweets Using PHP With Codeigniter

Get Latest Tweets Using PHP With Codeigniter

Twitter API using get Latest tweets(feeds) .

Step 1:  you should read this article understand easily Twitter Direct Messages

step 2:  PHP page write a code like
<?php
//Twitter Application Class and Keys
require_once( APPPATH . "third_party/TwitterAPIExchange.php" );
/* this class file is attached here click this link
http://lvsclasses.blogspot.in/2013/12/twitter-direct-messages-through.html*/
$settings = array(
'oauth_access_token' => "2226778816-7789896fghfjfjyOny4OUxQgtEt8AhwZNa3pWY",
'oauth_access_token_secret' => "7dshjd456sfjdsj4563BqNcJhlYb25Zl4hlOWHvGQVw",
'consumer_key' => "VIAiEdvhfhRlVQCrH2Q",
'consumer_secret' => "eXktHzHKK4564hh54446KbNkJRHyDZpjdNTjiV9uxVXRA"
);
$url = 'https://api.twitter.com/1.1/statuses/user_timeline.json';
// The request method, according to the docs, is GET, not POST
$requestMethod = 'GET';
// Set up your get string, we're using my screen name here
$getfield = '?screen_name=BarackObama&count=5';
//count it means how many latest tweets you want.
// Create the object
$twitter = new TwitterAPIExchange($settings);
// Make the request and get the response into the $json variable
$json = $twitter->setGetfield($getfield)
->buildOauth($url, $requestMethod)
->performRequest();
// It's json, so decode it into an array
$result = json_decode($json);
foreach ($result as $entry) {?>
<img src="<?php echo $entry->user->profile_image_url;?>">
<?php echo $entry->text ."<br>";
}
print_r($result);
// Access the profile_image_url element in the array
//echo $result->profile_image_url;
?>
example Barak Obama latest tweets here.

Read more »

Linkedin Direct Message Example

Linkedin Direct Message Example

When logged in user, and provides functionality for sending messages to the connected user .
Open your linkedin see  your  message like bellow picture

You can download the code here
Continue to Read »»»

Create your own google chrome app.

Create your own google chrome app.

Create your own Google Chrome browser application I am going to show you how to create Google chrome app using JSON an upload chrome store. I am creating this app using JSON and its very easy to create you can create it in minutes. To create chrome app you need a text editor like notepad or word pad and Google chrome browser.

{
"name": "LVSclasses",
"description": "LVSclasses PHP Tutorials, Codeigniter, Joomla, jQuery, Ajax, PHP, MySQL.",
"version": "0.0.0.2",
"manifest_version": 2,
"icons": {
"128": "lvs_icon.png"
},
"app": {
"url": [
"http://lvsclasses.blogspot.com"
],
}
}
view raw manifest.json hosted with ❤ by GitHub

s
Read more »

Mandrill API to send Mails with Templates also dynamic content using PHP

Mandrill API to send Mails with Templates also dynamic content using PHP

Mandrill: The fastest way to deliver email Mandrill.com
Follow these steps to start your Mandrill app.

Goto click here https://mandrillapp.com/ create your mandrill account.


Continue to Read »»»

Twitter Send Direct Messages Through Codeigniter

Twitter Send Direct Messages Through Codeigniter

How to send a new direct message to the specified user from the authenticating user (TWITTER).

Resource URL


Step 1:  Download Twiiter API class file and placed inside the  third_party or vendor.

Continue to Read »»»

Facebook Invite Friends API

Facebook Invite Friends API
This is the example of invite facebook friends API .
Example:

<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({
appId:'634140213295237',
cookie:true,
status:true,
xfbml:true
});

function FacebookInviteFriends()
{
FB.ui({
method: 'apprequests',
message: 'Your Message diaolog'
});
}
</script>


//HTML Code
<div id="fb-root"></div>
<a href='#' onclick="FacebookInviteFriends();">
Facebook Invite Friends Link
</a>

Read more »

PHP Development include?

PHP Development include?
PHP Development
 • Web Application Development
 • Application Enhancement
 • Application Maintenance
 • mySQL Data Modeling
 • Open Source Implementation
 • Zend Framework
 • Customized Scalable Applications

Continue to Read »»»