echo3D
π Back to website
π» Go to console
πΊ Watch workshop
π¬ Discuss on Slack
Searchβ¦
Introduction
Quickstart
π
Get an API Key
π»
Access the Console
π²
Add a 3D Model
π
See it in AR
π
Share it with Others
β
Troubleshooting
Web Console
π
Load a Key
πΌ
Manage Pages
π
Deliver Pages
π
Analyze Pages
π
Compute Pages
π
Learn Pages
β
Help Menu
β¬
Downloads
π¨
Themes
π
Search
π€
Profile
API
π§©
Objects
ππ¨
Queries
π
Data
πΌ
Upload
π½
Download
π
Convert
π
Compress
βΊ
Locate
π
Search
Unity
π¨
Installation
π§°
Using the SDK
π
Transforming Content
π©π»
Edit Code
π€³
Adding AR Capabilities
β
Troubleshooting
Scene Viewer
π²
Deploy Experience
π
Transforming Content
π’
Embed into Website or App
π©π»
Add Code
β
Troubleshooting
AR.js
π²
Deploy Experience
π
Transforming Content
π’
Embed into Website or App
β
Troubleshooting
React Native
π©
Fetching Data
π©π»
Edit Code
π€³
Adding AR/VR Capabilities
π
Transforming Content
Swift
π¨
Installation
π€³
Adding AR Capabilities
Flutter
π¨
Installation
π©π»
Edit Code
π€³
Adding AR Capabilities
JavaScript
π©
Fetching Data
π©π»
Edit Code
WebXR
π²
Deploy Experience
eCommerce Sites
π
Shopify
π
Wix
3D Content
π¨
Content Creation
π
Google Poly
π«
3D Capture Apps
Powered By
GitBook
π©
Fetching Data
Learn how to integrate our system with React Native.
You can easily use echo3D with your React Native project by using our RESTful API.
You can use the
fetch
interface to query your project
data set
using the
query API call
:
app.js
1
...
2
β
3
render
:
function
()
{
4
5
var
echoDB
;
6
7
// Query echo3D
8
fetch
(
'https://api.echo3D.co/query?key='
+
API_KEY
)
9
.
then
((
response
)
=>
response
.
json
())
10
.
then
((
json
)
=>
{
11
// Store database
12
global
.
echoDB
=
json
;
// Save JSON response as a global variable
13
})
14
.
catch
((
error
)
=>
{
15
console
.
error
(
error
);
16
});
17
18
...
19
β
20
}
21
β
22
...
Copied!
You will be able to access your API key and
database entries
anywhere as follows:
1
var
apiKey
=
global
.
echoDB
.
apiKey
;
2
var
db
=
Object
.
values
(
global
.
echoDB
.
db
);
Copied!
AR.js - Previous
Troubleshooting
Next - React Native
Edit Code
Last modified
7mo ago
Copy link