Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Base64 is a set of encoding schemes that represent binary data in an ASCII string format.

learn more… | top users | synonyms

2
votes
1answer
208 views

Upload Base64 Image Facebook Graph API

Im trying to upload a base64 image to a FaceBook page using Node.js. I have managed to get the upload working with all the multipart data etc should I read the file from the filesystem (ie. using ...
0
votes
1answer
77 views

Facebook & Classic ASP - Passing custom parameters to fan page tab - error with no data

We have our app working using this code (Is it possibile to pass parameters to the callback URL of a FB app which is accessed through a tab?), but the issue arises when there is no app_data parameter ...
3
votes
0answers
199 views

Uploading base64 image to Facebook graph API via Javascript/Phonegap

I'm trying to make a "post" request to https://graph.facebook.com/"+userID+"/photos?access_token="+accessToken with the 'url' paramter being a base64 data URI. I got the error "data:base64.... is ...
0
votes
1answer
346 views

fb_graph upload photo from base64 encoded string

I'm receiving attachments from postmarkapp (described here: http://developer.postmarkapp.com/developer-inbound-parse.html#attachments). I want to upload those photos to facebook using fb_graph ...
2
votes
2answers
367 views

Saving base64 encoded image for facebook sharing via PHP

I have an image thumbnail, encoded as base64, that I want to use as the default thumbnail when sharing a page via Facebook. Facebook does not seem to support using the base64 image directly so I need ...
0
votes
2answers
810 views

parse_signed_request - base64_url_decode - strstr use

in the facebook php reference there the parse_signed_request to check out a signed_request I don't understand the use of strtr($input, '-_', '+/') in function base64_url_decode($input) { return ...
1
vote
3answers
1k views

Yii Facebook Registration

I am implementing facebook registration in my Yii site.. I setup application. For registration, in one step, we need to decode facebook users data, send by facebook. Facebook provide the code for ...
0
votes
2answers
133 views

What is the best way of hiding or encrypting information in comments in Javascript, CSS or HTML code?

While digging through facebook's css and html code I found some comments which seems to be encrypted in order to hide information. This could be some kind of debugging information which might be ...
0
votes
3answers
2k views

Facebook “signed_request” using pure Classic ASP

I would like to get the contents of the signed_request in my fb app, but using only Classic ASP with VBScript. Facebook's site has an example in PHP of decoding this but I can't find anything for ...
0
votes
5answers
2k views

Using Coldfusion to decode a facebook signed_request

I'm trying to use ColdFusion 9 to decode the signed_request variable that facebook passes. It is a base64 URL encoded string that needs to be decoded. In order to decode base64 strings one should do: ...
11
votes
4answers
4k views

Decoding Facebook's signed request in Ruby/Sinatra

Due to Facebook deprecating new FBML, I'm looking for a new way to create a "reveal" tab (a page tab that shows one version to fans and another to non-fans). Facebook has added data to the ...
9
votes
6answers
8k views

how to base64 url decode in python

for facebook fbml apps facebook is sending in a signed_request parameter explained here http://developers.facebook.com/docs/authentication/canvas they have given the php version of decoding this ...
2
votes
2answers
1k views

Facebook stream.publish with image attachment from Base64

I'm trying to get facebook's stream.publish to make a wall post that includes some custom text and a dynamically generated image from the site. The Image is only available as Base64 as it is drawn by ...