DISPLAY IMAGEs using
1) GOOGLE API
2) GOOGLE SCRIPT
DISPLAYING
HONDA CITY 5thGEN & HONDA CIVIC 9thGEN
IMAGEs
RAW-IMAGE FILEs
"error happens"
try {
// kode yang mungkin menghasilkan error
} catch (error) {
// kode yang dijalankan jika terjadi error
}
🔷 Google API vs Google Apps Script
Explanation & Comparison
1️⃣ What is Google API?
Google API (Application Programming Interface) is a set of tools that allow developers to connect their applications to Google services like:
- Google Drive
- Google Sheets
- Google Maps
- Gmail
- YouTube
- Google Cloud Services
💡 Simple Explanation:
Google API is a bridge between your application and Google services.
Google API is a bridge between your application and Google services.
Example Use Cases:
- Read spreadsheet data → Google Sheets API
- Upload file → Google Drive API
- Send email → Gmail API
- Show map → Google Maps API
- Get video statistics → YouTube Data API
2️⃣ What is Google Apps Script?
Google Apps Script is a cloud-based JavaScript platform that allows you to automate and extend Google products.
🤖 Simple Explanation:
Apps Script is like a robot inside Google that automates tasks.
Apps Script is like a robot inside Google that automates tasks.
Example Use Cases:
- Auto-send email when Form submitted
- Update spreadsheet daily
- Create custom menu in Google Sheets
- Build mini web apps
- Process Drive files automatically
| Feature | Google API | Google Apps Script |
|---|---|---|
| Where it runs | Your own server/app | Google servers |
| Programming Language | Any language | JavaScript |
| Need hosting? | Yes | No |
| Best for | External apps & integrations | Automation inside Google |
| Authentication | OAuth / API Key | Built-in Google account |
🎯 When To Use Which?
🔹 Use Google API if you build:
- Mobile applications
- Backend servers
- Full external system integrations
🔹 Use Google Apps Script if you:
- Automate Google Workspace
- Work mostly with Drive & Sheets
- Want quick automation without hosting
Comments
Post a Comment