CarMusing Developers Blog
Monday, July 2, 2012
Promoting buying and selling hybrids
Hybrid cars on CarMusing - http://carmusing.com/search1.php?search=hybrid
Wednesday, November 16, 2011
Facebook Application Launched
The official start of the facebook application - http://apps.facebook.com/carmusing/
New features:
- View button. Shows you a gallery of vehicles, ordered by date published.
- Sign up with Facebook. Use you Facebook details to sign up.
Next:
- Work on complete Sign up with Facebook option. The user is signed up and logged in as soon as he/she enters the application - after accepting the permissions for email, name etc.
- Place an ad and register buttons on the home page. When clicked the buttons should open an iframe with new account details.
New features:
- View button. Shows you a gallery of vehicles, ordered by date published.
- Sign up with Facebook. Use you Facebook details to sign up.
Next:
- Work on complete Sign up with Facebook option. The user is signed up and logged in as soon as he/she enters the application - after accepting the permissions for email, name etc.
- Place an ad and register buttons on the home page. When clicked the buttons should open an iframe with new account details.
Wednesday, August 24, 2011
Working on CarMusing facebook application -added a dialog box to ask the visitor for authorization before he/she enters the application.
I also need 10 MAU so I can submit the application in the facebook application directory.
Here is the code I added (the application is written in PHP):
$app_id = 253259658030262;
$canvas_page = "http://apps.facebook.com/carmusing-directory/";
$auth_url = "http://www.facebook.com/dialog/oauth?client_id="
. $app_id . "&redirect_uri=" . urlencode($canvas_page);
$signed_request = $_REQUEST["signed_request"];
list($encoded_sig, $payload) = explode('.', $signed_request, 2);
$data = json_decode(base64_decode(strtr($payload, '-_', '+/')), true);
if (empty($data["user_id"])) {
echo("");
}
After this just add the code of your application - or parts of your website... There is very little facebook applications for used cars - one of the reasons why we are working on this project.
I also need 10 MAU so I can submit the application in the facebook application directory.
Here is the code I added (the application is written in PHP):
$canvas_page = "http://apps.facebook.com/carmusing-directory/";
$auth_url = "http://www.facebook.com/dialog/oauth?client_id="
. $app_id . "&redirect_uri=" . urlencode($canvas_page);
$signed_request = $_REQUEST["signed_request"];
list($encoded_sig, $payload) = explode('.', $signed_request, 2);
$data = json_decode(base64_decode(strtr($payload, '-_', '+/')), true);
if (empty($data["user_id"])) {
echo("");
}
After this just add the code of your application - or parts of your website... There is very little facebook applications for used cars - one of the reasons why we are working on this project.
Monday, August 22, 2011
Updates on CarMusing
- Added Facebook button to the footer
- Removed the Twitter widget
Link to edit facebook application - https://www.facebook.com/developers/editapp.php?app_id=253259658030262
application id is 253259658030262
https://www.facebook.com/developers/apps.php?app_id=253259658030262
Next task is search engine on facebook for old vehicles - full integration
- Removed the Twitter widget
Link to edit facebook application - https://www.facebook.com/developers/editapp.php?app_id=253259658030262
application id is 253259658030262
https://www.facebook.com/developers/apps.php?app_id=253259658030262
Next task is search engine on facebook for old vehicles - full integration
Sunday, August 21, 2011
Directory feature
Working on the directory feature on the website. Here's a link to it:
http://carmusing.com/directory.php
also including the link to the facebook page:
http://www.facebook.com/pages/CarMusing/158390837574293
http://carmusing.com/directory.php
also including the link to the facebook page:
http://www.facebook.com/pages/CarMusing/158390837574293
Subscribe to:
Posts (Atom)