facebook-apps

Lack of Heroku PHP GD setup for JPEG files causing issues

我是研究僧i 提交于 2019-12-12 03:59:07
问题 Heroku does not support GD setup for jpg. Because of this I am not able to create collage out of profile pics, which are only in jpg format. I am having the same issue as the below link. http://groups.google.com/group/heroku/browse_thread/thread/5f0b169272dd075f/5926d2e6eace859c?utoken=sizyOCkAAAD0zGxoh6dI3732ocaO_CKc0UdN2a4MLXn0dn7f9oF9dw34Femrnx-0ZHcOkI9yXY0 How do I resolve this issue? 回答1: My alternative was to use imagick.so extension instead. See my reply @stackoverflow here for

Facebook auto-login

被刻印的时光 ゝ 提交于 2019-12-12 02:46:51
问题 I have one situation. I create a website. Then I put a tab that will link to Facebook authorization login page. Can I pass login parameter(Email,Password) to the Facebook authorization login page?? So that the user can authorize the application without see the authorization login page. Thanks. 回答1: No. You can't do that. It would require the user to give you their facebook password which obviously would be breaking all kinds of terms and conditions. This is what OAuth is for. Check out the

developing Facebook paid application without fb credits?

半世苍凉 提交于 2019-12-12 02:18:37
问题 is it possible to create my FB app in Fb iframe and on pay button it directs to Paypal for payment and returns back to my fb app for further processing without using Fb credits ? In Facebook payment terms and policies i have read: NOTE: Per the Facebook Credits Terms, all games on the Facebook Platform (including mobile web apps) must exclusively process payments through Facebook Credits. Plus if you know any app on FB using payment method without FB credits please specify the names of the

How to redirect after authorizing to the canvas page

牧云@^-^@ 提交于 2019-12-11 17:59:58
问题 I am using this code from the example on Php-sdk , wondering how do I redirect the user to the canvas page after authorizing, currently it just sends back to the php page. <?php require 'src/facebook.php'; $facebook = new Facebook(array( 'appId' => 'AppId', 'secret' => 'Secret', )); // See if there is a user from a cookie $user = $facebook->getUser(); if ($user) { try { // Proceed knowing you have a logged in user who's authenticated. $user_profile = $facebook->api('/me'); } catch

New SSL certificate to be in place by 1st October

痴心易碎 提交于 2019-12-11 16:01:31
问题 I have been reading the developer blog on Facebook this morning and stumbled across this article saying that all Canvas pages are to use OAuth and SSL. • an SSL Certificate is required for all Canvas and Page Tab apps (not in Sandbox mode) • old, previous versions of our SDKs will stop working, including the old JavaScript SDK, old iOS SDK Does this really mean that any application that has been created before this date will stop working? Am I really going to have to buy an SSL certificate

Facebook Like Box - photos appearing stretched

吃可爱长大的小学妹 提交于 2019-12-11 13:33:29
问题 I've just added the Facebook like box to www.glasgow.ac.uk/careers. It seems to be working fine, except that photos are appearing stretched/distorted in the box (i.e. one at the moment is about twice the height it should be.) We've changed from the default box width, but even at the default this was happening with our pictures. Is there any way to fix this? Many thanks, Jamie 回答1: Jamie: Based on multiple examples, I have inferred the algorithm that Facebook are using to resize photos in the

Facebook iFrame App Will Not Display

心不动则不痛 提交于 2019-12-11 12:51:55
问题 I have searched through many pages on SO and cannot seem to find the answer I am looking for. I have a website (created via CMS SiteCore) that I want to display via an iFrame on a Facebook page. however, due to some SSL issue (I still do not fully understand the issue, but I know it is related to SSL), Facebook will not display it. I thought a possible solution would be dwonlaoding all of the content (HTML, CSS, Images, etc) and just recreate it in an HTML editor app for Facebook. Wrongo. The

self.user.user_id in the sample FB app throwing error

无人久伴 提交于 2019-12-11 11:48:00
问题 My FB app code had broken after a Facebook October 2012 Breaking Change and it got fixed by following a suggestion here: Picture property format using run with friends fb app But interestingly, after fixing it, I am facing another issue in the same code (which I dont think existed earlier) I have searched through the Breaking Changes but this issue doesnt seem to be discussed there as well. Its complaining of user_id not being an attribute of self.user in this line: u'userIdOnServer': self

Got this error while trying to integrate Facebook login for Android-“couldn't find the URL”. What does it mean?

我们两清 提交于 2019-12-11 11:36:27
问题 mfacebook_Callback_Manager = CallbackManager.Factory.create(); Collection<String> permissions = Arrays.asList("public_profile,email"); LoginManager.getInstance().logInWithReadPermissions(MainActivity.this, permissions); LoginManager.getInstance().registerCallback(mfacebook_Callback_Manager, new FacebookCallback<LoginResult>() {.......} Error occurs in callback of loginmanager. Stack Trace: 07-12 21:25:10.712 2107-2107/com.factory.fbsample.dev W/System.err: at com.facebook.login.LoginManager

Do I really need to submit an app request to facebook in order to use the fb-api?

元气小坏坏 提交于 2019-12-11 10:21:05
问题 I have a site where I need to manually specify the content (and Url since some parameters need to be added depending on which facebook share link i press) in the facebook share-dialouge. I've got it to work now as developer but do I really need to submit an app request for the "app" and thereby create an "my app page" on facebook for the "app"? (I have a business page for my business) All I want to do is use the facebook api to share my page content. Please give me an explanation for dummies