Questions tagged [photo-upload]

71 questions
1
vote
2 answers

can't uplpoad photos in multipart form in django rest framework

I hsve a project where user can upload multiple photos when creating a announcement, when sending request from postman using form-data the announcement is added successfully but the image is not uploaded, when using raw Json with content type…
1
vote
1 answer

sending post using instagrapi

Hi i am trying to send a post into Instagram using instagrapi module and I'm using photo_upload to do that but that not working here is my code : from instagrapi import Client print("im gonna log in") cl = Client() cl.login("UserName",…
HadiH2o
  • 302
  • 2
  • 18
1
vote
1 answer

How to display an avatar/thumbnail picture after uploading it in Vue js (Element-ui)?

I am currently working on uploading a picture and displaying it as a thumbnail or as an avatar after uploading it. I have written the below code. It successfully uploads it but I am having trouble displaying it in place of the uploader. …
skate_23
  • 447
  • 1
  • 11
  • 25
1
vote
1 answer

Tutorial for uploading a photo from android

Hi there I'm looking for tutorials to upload a photo from an android device to a service such as flickr or photobucket etc. Im not fussy! (I mean code tutorials, not how to use my android device ;) ) Thanks, Rich
wkdshot
  • 256
  • 1
  • 6
  • 18
1
vote
1 answer

Flickr photo upload does not work with OAtuth1Swift postImage Method

i'm currently facing the Problem that after the OAuth1 process, when i actually want to send the image, flickrapi responds with: No Photo Specified. :
CAoT
  • 183
  • 2
  • 10
1
vote
0 answers

Attempting to allow users to upload an image to an infowindow, google maps api

Just doing a bit of a university GIS project at the moment which allows users to take photos of birds they've seen and upload them with a marker on a google map in the place in which they found them. I've managed to get the geolocation, add the…
Laura
  • 11
  • 3
1
vote
1 answer

Appending files to file input in Rails

I wish to upload multiple files using Paperclip in Rails. I have created a page that uploads the multiple files selected at a time. Now I wish to select more files using same file field and upload the files that are selected before and currently…
Vishal
  • 707
  • 1
  • 8
  • 30
1
vote
1 answer

Facebook upload fan page in PHP not working anymore

I'm using the following code to upload photos to Facebook fan page as the page (not as a user): $ret_obj = $facebook->api ( '/'.$fanpageid.'/photos' , 'POST' , array( 'source' => '@' . $filename, 'message' => $message, 'link'=>$link, …
david
  • 100
  • 1
  • 5
1
vote
0 answers

Zend framework 2 upload files

I want to upload photo in my application. ProductController.php // ... public function addAction() { $categories = $this->getCategoryTable()->fetchAll(); $category_options = array(); foreach ($categories as…
Franky238
  • 511
  • 5
  • 21
1
vote
1 answer

upload photo to Facebook from flash mobile project using as3

i am currently developing android application... i want to upload photo to facebook from my application... i am using this.. but it is to share the link... what i want is to upload photo and message only which user can see whole message in the…
1
vote
1 answer

Unable to upload photo using community engine gem

I'm working on a project which uses Community engine gem(2.3.1). I'm on ruby 1.9.3 and rails 3.2.8 When I'm trying to upload a profile photo, I get the below error - can't convert Configatron::Store to Array (Configatron::Store#to_ary gives…
1
vote
0 answers

Post image on facebook via javascript

I am trying to post picture on facebook using the facebook JS sdk. The image I want to post is an image from a canvas, I am using the following code: function publishFacebook(){ console.log('dentro publish'); var dataURL = canvas.toDataURL() …
1
vote
0 answers

Conversion Personal Account to a Facebook Page: which token use to upload photo on that page?

this is my situation: I converted my personal account in a Facebook page (https://www.facebook.com/nextdoorhelp). Now when I logged in FB as the same account I have only a page adminstration panel for that page (that I call pageX). I created an app…
1
vote
1 answer

php and ajax - upload base64 photo and return link to edit

I've tried to make this: Upload photo from a PC as base64 string ("data:image/jpeg;base64,...") PHP will save this photo in full resolition as .jpg and make 160x160 .png thumbnail Then it will return link to full-size image and user will crop this…
1
vote
3 answers

Photo Upload to own wall via iOS Graph API with user's location

I need to post a photo (taken form the camera) in the users facebook wall with the location of the user. Now, the facebook photo object has a field named place: object containing id and name of Page associated with this location, and a location…
Shabib
  • 1,697
  • 4
  • 20
  • 39