PHP: Google URL Shortener (With Authorization Key): analytics
Google provides URL shortening service goo.gl along with an API. In one of our previous post, we discussed how to make anonymous calls to the service, especailly for shortening, expanding and analytics. But anonymous calls has certain limits, you can not make a large number of calls in a single day. So you can make [...]
PHP: Google URL Shortener (With Authorization Key): expand
Google provides URL shortening service goo.gl along with an API. In one of our previous post, we discussed how to make anonymous calls to the service, especailly for shortening and expanding. But anonymous calls has certain limits, you can not make a large number of calls in a single day. So you can make use [...]
PHP: Google URL Shortener API Tutorial with Examples
Google has released the Google URL Shortener API. This means that you can make use of this service in your websites, clients and programs. What this means to the developer is that he can access the Google URL shortener service through REST calls in his programs. The API is released as a web service. The [...]
json_object_new_object: Creating a new Json object
json_object_new_object is used to create a new json object. Once you create a json object, you can add more objects to it. The syntax of the function is As you can see, it returns a pointer to the json object The following program shows the usage of the function The output of the program is [...]
json_object_is_type: Check the type of json object
json_object_is_type is used to check whether the type of the json object is same as that of the specified type. So you can easily guess that the function takes two arguments The output of the program is something like this The input to the program is