Browse Source

Updated README.md

master
ashwin47 10 years ago
parent
commit
f607d526ff
  1. 1
      .gitignore
  2. 21
      README.md
  3. 57
      facebook_start.php
  4. BIN
      images/arjun.jpg
  5. BIN
      images/mark.jpg
  6. BIN
      images/sns.jpg
  7. BIN
      images/srk.jpg
  8. 4
      index.php
  9. 7
      overlay.php
  10. 2
      update.php

1
.gitignore

@ -5,3 +5,4 @@ cache/
facebook_start.php
sitemap.xml
cred.php
privacy-policy.html

21
README.md

@ -1,8 +1,13 @@
# net-neutral
Facebook profile picture overlay creater
# Net-Neutral
Facebook profile picture overlay creater.
http://isupportnetneutrality.in/
# Description
It downloads user's profile picture and paste an overlay image on it and presents an option to update it to his facebook feed.
# Installation
It uses Facebook_SDK_v4 for authentication and uploads.
#credentials
Please add a file named `cred.php` to the folder and add the following lines in them:
```
@ -11,3 +16,13 @@ $_YOUR_APP_ID = 'XYZ';
$_YOUR_APP_SECRET = 'XYZ';
?>
```
Install curl
```
sudo apt-get install curl
```
# Screenshots

57
facebook_start.php

@ -1,46 +1,21 @@
<?php
ini_set('display_errors',1);
error_reporting(E_ALL);
ini_set('display_errors',1);
error_reporting(E_ALL);
session_start();
//require_once '/src/facebook/autoload.php';
require( __DIR__.'/Facebook/autoload.php' );
require( __DIR__.'/cred.php' );
# Facebook PHP SDK v5: Check Login Status Example
// // Choose your app context helper
// $helper = $fb->getCanvasHelper();
// //$helper = $fb->getPageTabHelper();
// //$helper = $fb->getJavaScriptHelper();
// // Grab the signed request entity
// $sr = $helper->getSignedRequest();
// // Get the user ID if signed request exists
// $user = $sr ? $sr->getUserId() : null;
// if ( $user ) {
// try {
// // Get the access token
// $accessToken = $helper->getAccessToken();
// } catch( Facebook\Exceptions\FacebookSDKException $e ) {
// // There was an error communicating with Graph
// echo $e->getMessage();
// exit;
// }
// }
/* Create our Application instance (replace this with your appId and secret). */
$fb = new Facebook\Facebook(array(
'app_id' => $_YOUR_APP_ID,
'app_secret' => $_YOUR_APP_SECRET,
'default_graph_version' => '$v2.3',
));
function debug_to_console($data) {
if(is_array($data) || is_object($data))
{
echo("<script>console.log('PHP: ".json_encode($data)."');</script>");
} else {
echo("<script>console.log('PHP: ".$data."');</script>");
$fb = new Facebook\Facebook(array(
'app_id' => $_YOUR_APP_ID,
'app_secret' => $_YOUR_APP_SECRET,
'default_graph_version' => '$v2.3',
));
function debug_to_console($data) {
if(is_array($data) || is_object($data))
{
echo("<script>console.log('PHP: ".json_encode($data)."');</script>");
} else {
echo("<script>console.log('PHP: ".$data."');</script>");
}
}
}

BIN
images/arjun.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
images/mark.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

BIN
images/sns.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

BIN
images/srk.jpg

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

4
index.php

@ -43,7 +43,7 @@
<div class="header">
<h1>Show your support for Net Neutrality</h1>
<img class="profile" src="images/modi.jpg"/>
<img class="profile" src="images/arjun.jpg"/>
</div>
<div class="content">
<br/>
@ -66,4 +66,4 @@
</div>
</body>
</html>
</html>

7
overlay.php

@ -7,12 +7,9 @@
$output = curly($token);
echo $output;
$r=json_decode($output, true); //To Array
//$r = array('id' => "1011197735591770");
$r=json_decode($output, true);
$id= $r['id'];
$path = "cache/".$id.".jpg";
$_SESSION['path'] = $path;
// only create if not already exists in cache
if (!file_exists($path)){
@ -112,7 +109,7 @@
<div class="content">
<br/>
<form action="update.php" method='post'>
<label for="update" >Status</label>
<label for="update" >Status:</label>
<textarea class="u-full-width" placeholder="" name="text"></textarea>
<input class="button-primary" value="Update" type="submit">
</form>

2
update.php

@ -4,8 +4,6 @@ $text = htmlspecialchars($_POST['text']);
//echo $text;
$token = $_SESSION['facebook_access_token'];
var_dump($_SESSION['path']);
$path = $_SESSION['path'];
var_dump($path);
//Upload image

Loading…
Cancel
Save