Upload Facebook image URL to Firebase Storage

user278063

I am trying to upload the users facebook profile picture to Firebase Storage.

let dictionary = result as? NSDictionary
let data = dictionary?.objectForKey("data")
let urlPic = (data?.objectForKey("url"))! as! String
print(urlPic) //Direct link to facebook profile picture
print("Down Casting to a string")
print("\(urlPic)")

The code above gives me the url to the facebook picture. So that is all working fine!

However, once I have the link(URL) to the image how would I go about uploading it to Firebase Storage?

Kyle Griffith

You don't want to send a url to the storage. it will only work on the emulator, but obviously it doesn't work on a device. so you need to send the data. Check out this link. I am not fluent in swift but i made it work in the objc version so just copy and paste and troubleshoot https://github.com/firebase/quickstart-ios/blob/master/storage/StorageExampleSwift/ViewController.swift

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Upload Facebook image URL to Firebase Storage

From Dev

Upload image from URL to Firebase Storage

From Dev

Firebase Storage - URL for image services

From Dev

Firebase storage - Limit size of image that users upload to firebase storage

From Dev

Firebase storage - Limit size of image that users upload to firebase storage

From Dev

How to check progress of image upload to Firebase storage

From Dev

Firebase Storage - Upload multiple image files in Android

From Dev

Image Size Changed After Upload To Firebase Storage

From Dev

How to upload the public url for an image uploaded to the Firebase Cloud Storage to the Realtime Database

From Dev

When I upload an image to firebase storage and retriving the download url and displaying in img tag but it is showing multiple times

From Dev

flutter firebase storage issue with image url

From Dev

How to upload an image to Google Cloud Storage from an image url in Node?

From Dev

Angular 2 Firebase Storage - Image preview on upload finish

From Dev

Upload image to Firebase Storage from django models in FileField

From Dev

Upload image taken with camera to firebase storage on React Native

From Dev

Ionic 2 app: Same image upload in firebase storage

From Dev

Firebase Storage | Angular 2 - Proper way to display image after upload

From Dev

Firebase Storage Permission unknown error with React Native Image Upload

From Dev

Firebase Storage upload synchronously

From Dev

Firebase Storage upload synchronously

From Dev

Firebase Storage upload php

From Dev

Firebase how to get Image Url from firebase storage?

From Dev

Display images of Firebase Storage with a Firestore query to get image url in Flutter

From Dev

Firebase Cloud functions remove orphan image from storage using url

From Dev

Firebase Storage: How to store image url as an object property?

From Dev

Firebase Storage invalid argument on upload

From Dev

Laravel 5.2 upload image to storage

From Dev

upload an image from url

From Dev

Why is image automatically gets uploaded before even clicking the upload button Android Firebase Storage?

Related Related

  1. 1

    Upload Facebook image URL to Firebase Storage

  2. 2

    Upload image from URL to Firebase Storage

  3. 3

    Firebase Storage - URL for image services

  4. 4

    Firebase storage - Limit size of image that users upload to firebase storage

  5. 5

    Firebase storage - Limit size of image that users upload to firebase storage

  6. 6

    How to check progress of image upload to Firebase storage

  7. 7

    Firebase Storage - Upload multiple image files in Android

  8. 8

    Image Size Changed After Upload To Firebase Storage

  9. 9

    How to upload the public url for an image uploaded to the Firebase Cloud Storage to the Realtime Database

  10. 10

    When I upload an image to firebase storage and retriving the download url and displaying in img tag but it is showing multiple times

  11. 11

    flutter firebase storage issue with image url

  12. 12

    How to upload an image to Google Cloud Storage from an image url in Node?

  13. 13

    Angular 2 Firebase Storage - Image preview on upload finish

  14. 14

    Upload image to Firebase Storage from django models in FileField

  15. 15

    Upload image taken with camera to firebase storage on React Native

  16. 16

    Ionic 2 app: Same image upload in firebase storage

  17. 17

    Firebase Storage | Angular 2 - Proper way to display image after upload

  18. 18

    Firebase Storage Permission unknown error with React Native Image Upload

  19. 19

    Firebase Storage upload synchronously

  20. 20

    Firebase Storage upload synchronously

  21. 21

    Firebase Storage upload php

  22. 22

    Firebase how to get Image Url from firebase storage?

  23. 23

    Display images of Firebase Storage with a Firestore query to get image url in Flutter

  24. 24

    Firebase Cloud functions remove orphan image from storage using url

  25. 25

    Firebase Storage: How to store image url as an object property?

  26. 26

    Firebase Storage invalid argument on upload

  27. 27

    Laravel 5.2 upload image to storage

  28. 28

    upload an image from url

  29. 29

    Why is image automatically gets uploaded before even clicking the upload button Android Firebase Storage?

HotTag

Archive