How do I get network images with authentication in React Native?

ZJL

The current supported way to get image is by inserting the {uri:link} object to the source props of Image, however, this does not have authentication enabled. Is there a way to insert an authentication token into the url call or other ways to have authentication for retrieving images? Thanks a lot!

  < Image
    style={styles.logo}
    source={{uri: 'http://facebook.github.io/react/img/logo_og.png'}}
  />
Adam Terlson

Are you using basic auth as your question tag suggests? If yes, you could bake it into the URL itself:

  <Image
    style={styles.logo}
    source={{uri: 'https://USER:[email protected]/react/img/logo_og.png'}}
  />

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How do I alternate two Images in a react native component

From Dev

How do I inspect network traffic on a react native app on iOS?

From Dev

How do I listen to email verification event with firebase authentication and react native?

From Dev

How do I ask for larger images in react native (react-native-fbsdk) when asking for more then just invitable_friends data?

From Dev

How do I display all of the images from my Firebase Storage in React Native without needing image names?

From Dev

How do I get iPads to upload images?

From Dev

How do I get the network mask in Linux

From Dev

React-Native:How Can I get multiple marker images, When I clicking On multiple Positions(like X and Y coordinates)

From Dev

How to do a React Native count down with animated images?

From Dev

How can I conditionally include images in React Native Component?

From Dev

How do I enable multidex for react native?

From Dev

How do I properly debug in React Native?

From Dev

How do I screenshot Wifi Network Authentication Required window's Authentication menu? (apparent bug; Ubuntu 16.04)

From Dev

How do I get a React Native TextInput to maintain focus after submit?

From Dev

How do I get an OAuth 2.0 authentication token in C#

From Dev

Homegrown authentication, how do I remember and get the logged in user

From Dev

How do i get this Basic Authentication working in .NET Core

From Dev

How do I get Firebase Phone Authentication to work for my app?

From Dev

How do i get images file name from a given folder

From Dev

How do I get images to display in iOS simulator?

From Dev

How do I get Images.xcassets under source control?

From Dev

How do I get images to appear on buttons in Glade Designer?

From Dev

How do I get Thunderbird to always show embedded images?

From Dev

How do I get Thunderbird to always show embedded images?

From Dev

How do I get images to appear on buttons in Glade Designer?

From Dev

How do I get an UbuntuShape to transition (fade) between different images?

From Dev

How do i get images file name from a given folder

From Dev

How do I get different background images on my dual monitors?

From Dev

How do I get two images to toggle on mouseover/mouseout?

Related Related

  1. 1

    How do I alternate two Images in a react native component

  2. 2

    How do I inspect network traffic on a react native app on iOS?

  3. 3

    How do I listen to email verification event with firebase authentication and react native?

  4. 4

    How do I ask for larger images in react native (react-native-fbsdk) when asking for more then just invitable_friends data?

  5. 5

    How do I display all of the images from my Firebase Storage in React Native without needing image names?

  6. 6

    How do I get iPads to upload images?

  7. 7

    How do I get the network mask in Linux

  8. 8

    React-Native:How Can I get multiple marker images, When I clicking On multiple Positions(like X and Y coordinates)

  9. 9

    How to do a React Native count down with animated images?

  10. 10

    How can I conditionally include images in React Native Component?

  11. 11

    How do I enable multidex for react native?

  12. 12

    How do I properly debug in React Native?

  13. 13

    How do I screenshot Wifi Network Authentication Required window's Authentication menu? (apparent bug; Ubuntu 16.04)

  14. 14

    How do I get a React Native TextInput to maintain focus after submit?

  15. 15

    How do I get an OAuth 2.0 authentication token in C#

  16. 16

    Homegrown authentication, how do I remember and get the logged in user

  17. 17

    How do i get this Basic Authentication working in .NET Core

  18. 18

    How do I get Firebase Phone Authentication to work for my app?

  19. 19

    How do i get images file name from a given folder

  20. 20

    How do I get images to display in iOS simulator?

  21. 21

    How do I get Images.xcassets under source control?

  22. 22

    How do I get images to appear on buttons in Glade Designer?

  23. 23

    How do I get Thunderbird to always show embedded images?

  24. 24

    How do I get Thunderbird to always show embedded images?

  25. 25

    How do I get images to appear on buttons in Glade Designer?

  26. 26

    How do I get an UbuntuShape to transition (fade) between different images?

  27. 27

    How do i get images file name from a given folder

  28. 28

    How do I get different background images on my dual monitors?

  29. 29

    How do I get two images to toggle on mouseover/mouseout?

HotTag

Archive