Sngine v2+ is a Social Network Platform is the best way to create your own social website or online community. Launch it in just 1 minute with ultimate features. It’s easy to install
If you have any questions that are beyond the scope of this documentation, please feel free to create a support ticket on our support system. Thanks so much!
To install Sngine or even to open a support ticket you must know your Purchase Code of Sngine and to get your Purchase Code
No coding or design skills needed. Launch in 1 minute
After installing Sngine now you can in easy step integrate Facebook with it to let your users login with their Facebook accounts.
After installing Sngine now you can in easy step integrate Twitter with it to let your users login with their Twitter accounts.
After installing Sngine now you can in easy step integrate Google with it to let your users login with their Google accounts.
After installing Sngine now you can in easy step integrate Linkedin with it to let your users login with their Linkedin accounts.
After installing Sngine now you can in easy step integrate Vkontakte with it to let your users login with their Vkontakte accounts.
Our API allows you to retrieve informations from y website via GET request and supports the following parameters:
| Field | Description |
| get | This parameter specify the type of the query:
|
| query | The query string |
Allow you to retrive the user info
Example of requests:[GET] http://demo.sngine.com/api.php?get=users&query=USERNAMEExample of response:
[user_id] => 1
[user_name] => Yehia Abed
[user_fullname] => d3veloper
[user_gender] => M
[user_picture] => http://demo.sngine.com/content/themes/default/images/blank_profile_male.jpg
[user_cover] =>
[user_registered] => 2016-02-14 14:56:57
[user_verified] => 1
An example of json decoding would be the following PHP code:
<?php
header('Content-Type: text/plain; charset=utf-8;');
$file = file_get_contents("http://demo.sngine.com/api.php?get=users&query=USERNAME");
print_r(json_decode($file));
?>
Allow you to retrive the page info
Example of requests:[GET] http://demo.sngine.com/api.php?get=pages&query=USERNAMEExample of response:
[page_id] => 1
[page_admin] => 1
[page_category] => 1
[page_name] => sngine
[page_title] => sngine
[page_picture] => http://demo.sngine.com/content/themes/default/images/blank_page.png
[page_cover] =>
[page_description] => ss
[page_verified] => 0
[page_likes] => 0
An example of json decoding would be the following PHP code:
<?php
header('Content-Type: text/plain; charset=utf-8;');
$file = file_get_contents("http://demo.sngine.com/api.php?get=pages&query=USERNAME");
print_r(json_decode($file));
?>
Allow you to retrive the group info
Example of requests:[GET] http://demo.sngine.com/api.php?get=groups&query=USERNAMEExample of response:
[group_id] => 1
[group_admin] => 1
[group_name] => sngine
[group_title] => sngine
[group_picture] => http://demo.sngine.com/content/themes/default/images/blank_page.png
[group_cover] =>
[group_description] => ss
[group_verified] => 0
[group_members] => 0
An example of json decoding would be the following PHP code:
<?php
header('Content-Type: text/plain; charset=utf-8;');
$file = file_get_contents("http://demo.sngine.com/api.php?get=groups&query=USERNAME");
print_r(json_decode($file));
?>