Php :: Uploading Image To Facebook Through External Script?

Jan 30, 2012

I've developed a Flash quiz app for facebook, which calls for a php script silently upon completion. The php script's function is to generate an image from the POST data sent by the flash, and then post it to the user's wall.That would be all neat and dandy, but for some reason the image never gets uploaded, probably because when i call it, it's like [URL] and the facebook SDK script inside gets an Oauth error, probably because it is not embedded in their canvas.

If I'd like to have my php script generate an image and upload it to the fb wall, then how should I call it from the flash?This is the AS2 code I'm using currently:

callRemoteFile = function(ourVariable:Number) {
var result_lv:LoadVars = new LoadVars();
result_lv.onLoad = function(success:Boolean) {

[code]....

If I simply navigate to the php with my browser it giver me this:

Fatal error: Uncaught OAuthException: Invalid OAuth access token signature. thrown in /home/a01223445/public_html/appfolder/base_facebook.php on line 1039

If I view the same php through facebook canvas it works perfectly. My problem is: The canvas will show the flash and I want the php to silently be evaluated while the flash is running.

View 1 Replies


Similar Posts:


Uploading Files In Flash 10 On A Facebook Profile?

Feb 16, 2010

I am developing a facebook application which sits in an application tab.The app is developed in flash and as such must use fb:swf to embed the swf.Therefore it sets allowScriptAccess = never on the swf.There are 3 things that I will need to do, and I am not sure if it will be possible.1) Load external SWF files into the parent swf2) Load dynamic XML from the server3) Upload files to the serverI am using flash 10.

View 1 Replies

Flash :: Uploading Images Through Facebook Graph API

Jan 24, 2011

I'm trying to upload a picture through the Graph API, but somehow it doesn't get through. Correct me if I'm wrong, but if I don't give an album ID, it should create an album by itself right? I'm a quite confused by that. Right now, I'm using

[Code]...

View 1 Replies

Flash :: Uploading BitmapData Using Facebook Graph Api?

Feb 1, 2011

I've been looking around the internet on how to use the PostRequest class given by the Facebook in their Graph Api, but I couldn't find anything on it. I'm wondering how to use it to upload a bitmapdata. It just doesn't seem to be moving at all

[Code]...

Both doesn't work, which puzzles me. The first one worked without encoding it in any way, so I don't get why it doesn't work when I try to just call it like that.

View 1 Replies

Actionscript 3 :: Sharing A Link And Or Uploading A Photo On Facebook?

Jun 23, 2010

Developing a flash based image editing application and I want to be able to share and or save edited images to facebook.

Do I need to get a API Key to upload photos? What if I simply want to share a link with my friends? Do I still need an API key?

View 1 Replies

Actionscript 3 :: Display An Image In Flash Datagrid After Selecting An Image For Uploading?

Feb 27, 2010

After browsing for the images, and selecting them. How can I display a preview of the image in the datagrid? I am able to display the file name, file size, but was unable to display the image. Below are the codes I have written, it is not a complete code but just enough to make it understandable.

// variables used
var list:Array = new Array();
var listDP:Array = new Array();

[Code]....

View 1 Replies

Java - Upload Image Thumbnail To Server Without Uploading Whole Image?

Aug 27, 2009

As far as I know, what I ask here isn't possible, but I thought I'd ask anyway in case I'm missing something.

Suppose you want to let users upload JPG images, and these images are scaled into smaller icons and the original images are always discarded and never required again. Is there any way that would commonly work in most modern browsers that would let the user select a single image on their hard drive, have that LOCALLY turned into a thumbnail and upload the created thumbnail to a server?

In a case where the server just needs a small image, it would be wasteful both in user time and server resources to proceed uploading the whole image, only to immediately discard it. It would be much better to just scale it on the client.

I can imagine three options. Just plain HTML/Javascript, using Flash or using Java. If this were possible with Flash, that would seem like the best option. But reading flash.net.FileReference documentation, it seems that you can upload a file from the HD yes, but you cannot look inside the file you are uploading. On the other hand, if you enable "can access local files" in Flash publishing options, it seems that you can then no longer access the net, so that doesn't work.

With HTML/Javascript, it is possible to load images and display them on a <canvas>, but if you try to access the pixels of these images, you get security violations, so that doesn't seem to work.

Java I hesitate to use, because only 96.52% of my users have it installed, and the file upload dialogs I have seen implemented in Java (at Facebook for example) have not worked well (unresponsive interface). I wonder though if Java is the only thing allowing resizing images from local HD?

View 5 Replies

Actionscript 3 :: Facebook API - Can't Retrieve Image From Event Object After Image Loads?

Mar 13, 2012

I am getting a mysterious result when trying to load profile images from a logged in Facebook user's friends list into an as3 canvas app. In pretty much every (non-facebook) application I've made where loading an image is required I use the following:

private function loadPic():void
{
var url:String = Facebook.getImageUrl(_friendslistObjectArray[_loadCount].id);
_picLoader = new Loader();[code]............

I can't retrieve the image from the event object,and I am given no error at all.It all just fails silently.If I remove the line var image = evt.target.content, the process runs through the whole array.I can't think of any reason this would occur. Furthermore, if I look in firebug's net activity, I see I see the images get loaded as long as I do not have the line I just mentioned included. I just can't seem to get the image data from the event object to add it to stage or a container movieclip.

View 1 Replies

Actionscript 3 :: Uploading An Image Via PHP?

Oct 1, 2011

That script below is for uploading an image via PHP. Now I'ld like to give the user the option to cancel the upload. How to cancel the PHP request once it got send?

package
{
import com.adobe.images.PNGEncoder;

[Code]....

View 1 Replies

ActionScript 2.0 :: Uploading Image To SWF?

Aug 23, 2010

I asked a similar question before but didnt get a definite answer! Basically I just want to know if its possible to have a standalone SWF file which allows the user to browse there computer and load an image into the SWF to view it (in AS2)? Ive researched this FileReference class but it seems that requires servers and what not. I only want to upload the image to the SWF, not to an external server?

View 2 Replies

Html :: Preview Image Before Uploading?

Aug 20, 2010

I'm looking for some flash based plug-in which allows me to display an image as soon as the user selects it in the file dialog.I looked at swfupload but couldn't find any way to display the image selected.. no handle on file path or contents as far as I could find.

View 1 Replies

Actionscript 3 :: Add A Watermark To Image Before Uploading?

Mar 11, 2012

For the past few hours I've been trying to figure out a way to add a watermark to an image file before uploading it using the FileReference.upload(); method. The uploading works already. I just have to figure out how to get a small watermark (PNG image with alpha-transparency) on the lower right of the image file. Another thing is, I don't want to modify the source file. I just want to add the watermark on upload.

What approach would you recommend for this type of setup? I also can't seem to find any pre-made classes already that I can use for this certain thing. Is this not a very common task? And no I can't use server-side (PHP) to do the watermarking because I'm communicating directly to a service's API, not through my server.

View 2 Replies

ActionScript 3.0 :: Corrupt Image When Uploading?

Aug 9, 2011

I am writing an app for android devices, it uses the CameraRoll class to retreive images from the gallery. It then catches the raw bytearray data and encodes it into a base64 string, then sends the string via httppost to a server that decodes the string and saves the file.Every part of this is fine except one detail, the images are corrupt when they are saved on the server. Except one thing that makes things weirder, when I load these corrupt jpg images into a flash app they work just fine.Previously I have made apps that uses the Camera class to take photos in the app, and this works fine, the reason I am using cameraroll is because I want to be able to get high quality images, which is not possible using the regular camera -> bitmapdata.draw -> jpegencode -> send method.The code is basically thi

ActionScript Code:
//mediaevent select is triggered
var loader:Loader = new Loader();

[code].....

View 1 Replies

IDE :: Text In Image Distorted When Uploading?

Mar 14, 2010

I have a psd that is the background image on a site im creating, when i test the movie it looks fine however when i upload it to the ftp the text looks jagged.

[URL]

If you look on the edges on the cost of love logo you'll see what i mean.

View 1 Replies

Flash :: Adobe Facebook API Facebook.login VS Facebook.ui Popups?

Oct 24, 2010

I'm currently building an application using the Adobe Facebook API and I've run into an issue where for the login method the Facebook login popup displays but when doing a Facebook share/post the popup is blocked.

This code works fine and displays me a Facebook login popup without question (Firefox):

var permissions:Array = ['publish_stream'];

Facebook.login( onFacebookLogin, { perms:permissions.join(',') } );

However, the following code running in the same application throws up a popup blocker (again Firefox):

Facebook.ui( "stream.publish", "popup", params );

Does anyone know of a work around this issue to make the share popup come up just like the login popup?

View 2 Replies

ActionScript 3.0 :: Uploading Image With Flash 9 And PHP - Without Using FileReference

Aug 12, 2008

i am currently creating a software, i need to upload images form my HDD to server. i can do this with FileReference Object. with this code i can select file.

var f:FileReference;
f.browse(); // for selecting file (object)

and after that i will send that FileReference object to a PHP file and i upload via that PHP file.

but i want to upload file without using FileReference Class i am using File Class on Air 1.0 on Flash, and that class can provide full url of image from my HDD like: D:My Documentsimage01.jpg

there is any way to upload this file on my HDD to server without using browse() class for selecting file on Flash with PHP?

or is there one way to convert File Class (AIR) to FileReference?

View 4 Replies

ActionScript 3.0 :: Uploading An Image Dynamically Into Flash?

Aug 11, 2009

I'd upload an image choosen by the client, but I want to wrap it in a movieclip in order to manipulate its size and color with color transform. How can I do it? (AS3 in Flash 10)

[Code].....

View 9 Replies

Php :: Uploading An Image From Flash More Specifically HTTP_RAW_POST_DATA?

Aug 4, 2010

I currently have it working so it displays a dialogue box to save the image on your computer:

if (isset($GLOBALS["HTTP_RAW_POST_DATA"]))
{
// get bytearray

[code]....

View 2 Replies

Flash :: Uploading Image With Javascript, Then Having It Appear In Embedded SWF

May 9, 2011

I need to upload an image to a SWF, however I can't use ActionScript for it because the client wants drag-and-drop capability. I figure that I can make the upload button cause a popup, where there is JavaScript for drag-and-drop. The SWF allows for some photo manipulation, so the image needs to be uploaded, and be in the SWF for that use. how can I make that image accessible to the SWF file?

View 1 Replies

Flex :: Uploading And Image Dynamically At Runtime?

Mar 11, 2012

I am building a form builder in Flex 4.5. For that I need help regarding uploading image at runtime such that any user can just simply place cursor on particular location on image and is able to upload any image from the local file system.

View 2 Replies

ActionScript 2.0 :: Image Resize Before Uploading Using Flash?

May 8, 2008

That is my client need's before image uploading he need's to resize the image size....for saving a band width..

View 2 Replies

ActionScript 3.0 :: Add A Progress Bar To Check If The Image Is Uploading Or Not?

May 29, 2009

Why is it image is not uploading when im running on swf version, but image uploading works when im running the exe version of the flash project? And how can i add a progress bar to check if the image is uploading or not? Oh yeah, im new at actionscript so please go easy on me. anyway here's the code.

Code:
import com.adobe.images.JPGEncoder;
var jpgSource:BitmapData = new BitmapData (container_mc.width, container_mc.height);
jpgSource.draw(container_mc);

[code]....

And how can i say to image_mc to load the jpeg at the center of image_mc's axis. So that when i flip the image, the image will flip vertically at the center?

View 2 Replies

ActionScript 3.0 :: Working With Image Without Uploading It To Server

Jun 23, 2009

is it possible to upload an image from local computer to online flash application, but without actual uploading it to a server, just in memory. Need to load picture, make some manipulations, print it from flash and forget.thrashing the server with loads of photos is worst scenario.

View 5 Replies

Actionscript 2 :: Flash - IO Error While Uploading Photo With Low Uploading Internet Speed?

Mar 1, 2010

Actionscript:
System.security.allowDomain("http://" + _root.tdomain + "/");
import flash.net.FileReferenceList;

[code].....

View 2 Replies

ActionScript 3.0 :: Uploading Image From Contents Of A Movie Clip?

Mar 4, 2010

wanting to upload an image (gif probably) from the dynamic content of a specific movie clip within a swf file.

View 1 Replies

ActionScript 3.0 :: Loader - Uploading Large Image And Thumbnail From Xml

Sep 12, 2010

i am currently working with flash based fashion website. here i am uploading large image and thumbnail from xml. i also have menu navigation at top. my code structure is detail below:

[Code]...

my problem here is like i have home button with 5 thumbnail and handbags with 2 thumbnail when i click home button will display 5 thumb with large image and again when i click hangbags buttom it will display 2 thumb which is what i want but 5 home thumbs keeps on remain at back. dont know how to remove them upon new button click

View 5 Replies

ActionScript 3.0 :: Error In Uploading Image On Main Timeline

Jul 27, 2010

I am new to AS3.0 and I am starting to create an application using flash. I always get an error:
TypeError: Error #1034: Type Coercion failed: cannot convert "uploader.php" to flash.net.URLRequest.
at ieditor_fla::MainTimeline/uploadCurrent()

View 3 Replies

ActionScript 2.0 :: Simple Image Gallery/uploading System?

Dec 21, 2006

Not loading the images for a little info bar at the bottom. It works if you view a folder, however it doesn't work when you just view the main images. I am tracing it, and it traces great, just doesn't want to work.

View 1 Replies

Php :: Uploading Image To Server Using Byte Array To Upload In Flex 4.5 Air?

Jun 13, 2011

I'm using Flex 4.5 in a Mobile air for android application. So, Using the Camera/Camera roll [URL]I want to do a simple upload using amfphp Note: Since this is how you get pictures on devices, i cant use the filreference because it wants you to get the pictures using "browse" which cant be done on android or ios My plan is, after I select a picture or capture one with the camera, in the event I can get the local url to the picture that was taken like this:

[URL]

I'm putting this in the imageURL var (i'm assuming i should make it into a byte array to transfer it, im not exactly sure this is my first time making something like this)Here's how i'm taking that image, making it into a byte array, and using amfphp to send the upload to the server:

protected function upload_btn_clickHandler(event:MouseEvent):void
{
var request:URLRequest = new URLRequest(imageURL);
var urlLoader:URLLoader = new URLLoader(request);

[code]....

But i'm getting an error NetConnection.Call.BadVersion.This is the first time im trying something like this so im not even really sure if im going about it right. All the examples I find online go about using the fileReference class, but that seems to require me to use the "browse" method, and im on a mobile application that uses the camera and camera roll to grab pictures off the device, and im not sure how to incorporate that into the fileref class. I figured i could just get the byte array and send it to php myself and it should be just fine.

View 1 Replies

ActionScript 3.0 :: Uploading Multiple Large Image Files Times Out?

Jun 28, 2010

I coded a multiple file uploader using the FileReferenceList and PHP. It works great for me all the time on my Fios internet connection, which is by far faster then DSL, etc... So my issue kinda went unnoticed until I got on a DSL connection. Now, many of the files I was uploading seem to be timing out, but there is no indication of this. No errors, etc... just stops its progress and NEVER finishes. Tried bumping up the script execution time on the server

View 6 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved