Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Assets/TakePicture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ public class TakePicture : MonoBehaviour
//*****THE getData.php FILE THAT YOU NEED TO HOST ON A SERVER THAT HAS NODE.JS INSTALLED IS IN THE ASSETS FOLDER!*****

//change this to reflect your custom hosted url followed by getData.php?url=
private const string BASE_URL = "www.<YOUR_SITE>.com/getData.php?url=";
private const string BASE_URL = "www.matthewhallberg.com/getData.php?url=";
//enter your google api key for custom search here
private const string GOOGLE_API_KEY = "***************************";
private const string GOOGLE_API_KEY = "AIzaSyD9QU4FJ8G2Y8E8ZtOv_RD9KvhcC97jeC0";
//enter your cloud name from cloudinary here
private const string CLOUD_NAME = "*********";
private const string CLOUD_NAME = "db9b6mptp";
//enter your cloudinary upload preset name
private const string UPLOAD_PRESET_NAME = "****";
private const string UPLOAD_PRESET_NAME = "fiwicaw7";

//private const string CLOUDINARY_API_KEY = "464228211727792";

Expand Down Expand Up @@ -270,4 +270,4 @@ public void StartCamera(){
//starts the process
StartCoroutine ("TakePhoto");
}
}
}