Tips & Tricks Tutorials

Post into a Facebook page Using Graph API

Post into a facebook page Using Graph API

I have published a tutorial on How to Auto Post on Facebook Using PHP with Graph API which post status on user’s wall. Now in this tutorial I am going to show you how to post into a facebook page using Graph API with PHP. Create Facebook APP: To get the Facebook Access token you need to create Facebook App. To create a Facebook App please follow the steps of …

Continue reading

Draw a Circle on Google Map

Draw a Circle on Google Map

In this tutorial I will show you how to draw a circle on google map. We need to provide the radius, center point latitude and longitude, and different color options. Following are the options to draw a Circle on google Map for new york location with different color options also. Here is a complete example of draw a circle on google map. The result be like below: Hope this tutorial …

Continue reading

How to Create a Web Service using PHP

How to Create a Web service using PHP

Every application developer needs the ability to develop the services for wide range of platforms. We have SOAP (Simple Object Access Protocol) to create such a service and interact with the software with ease. So in this tutorial I will explain you how you can create a web service using PHP library nusoap. nusoap library : It’s very easy to create SOAP service. Download the nusoap library from http://sourceforge.net/projects/nusoap/. You …

Continue reading

Download File from URL

Download File from URL

In this tutorial I will explain you how to download file from URL. We two methods to get content from external URL’s, file_get_contents and CURL. Using file_get_contents : This function reads entire file into a string. But this function only works when fopen is enabled. Using CURL : CURL supports http, https, ftp, file protocols and more. Mostly enabled on all server these days. If you are using https url …

Continue reading

Custom marker with animation

Custom marker with animation

In this tutorial I will show you how to add custom marker with animation on google map. We will use an image as a marker and set a bounce animation on this, so when we click on the image it will start bounce. google.maps.Marker provides a icon option to replace the default marker icon with our own marker icon/image. Here is a simple example code of custom marker with animation. …

Continue reading

Share a link on LinkedIn

Share a link on LinkedIn

In previous posts I have shared how to share a link on Twitter and Facebook without using API. Now in this tutorial I am showing you how to share a link on LinkedIn without using API. Following URL is used to share a link on LinkedIn as a news with summary. You can change the URL, title and summary value in following URL: You can add this URL as link …

Continue reading

Auto Post on LinkedIn Using PHP OAuth

Auto Post on LinkedIn Using PHP OAuth

In previous tutorials, I have explained Auto Post on Twitter and Facebook. Now in this tutorial I will explain, how you can Auto Post on LinkedIn using PHP OAuth and LinkedIn API. As we already know how we can get user Access Token for LinkedIn, in this tutorial we will share the content on LinkedIn using this Access Token, PHP OAuth and LinkedIn API. Get Access Token You can get …

Continue reading

Get User Access Token for LinkedIn

Get User Access Token for LinkedIn

In my previous tutorials I have explained how you can get user access token for Twitter and Facebook. In this tutorial I am sharing, how you can get user access token for LinkedIn. To get Access Token for LinkedIn you need to create a LinkedIn application and get the Authentication Keys Client ID and Client Secret. Also you will need to use LinkedIn API with OAuth PHP library to get …

Continue reading