Questions tagged [web3storage]

4 questions
1
vote
1 answer

Send uploaded file

I use echo framework for building REST API. I receive file via http request and i need to send it to the next API service by post request. How i can do this without storing file? I've tried this way, but it doesn't feel right, because i have an…
1
vote
1 answer

How can I share links to my IPFS content if HTTP gateway URLs are blocked by some social media sites and firewall vendors?

IPFS is a distributed filesystem to which anyone can add and retrieve content, which is indexed by CID (content-hash), so each file gets a deterministic, immutable identifier. IPFS gateways make content from the network available to web clients.…
J Chris A
  • 1,014
  • 8
  • 12
1
vote
1 answer

When using the @w3ui/react-uploader why don't the files show up in my account?

I'm trying to extend the demo app at https://github.com/web3-storage/w3ui/tree/main/examples/react/file-upload but I'm getting confused on a more general point as I start out. The demo uses the @w3ui/react-uploader component which also relies on the…
natevw
  • 16,807
  • 8
  • 66
  • 90
0
votes
2 answers

Not able to read values from .env file

//accessToken.mjs import * as dotenv from "dotenv"; dotenv.config(); import { Web3Storage } from "web3.storage"; function getAccessToken() { // WEB3STORAGE_TOKEN environment variable before you run your code. …