|
|
|
สอบถามการส่งข้อมูลจากHTML5toMobileAppแบบRealtimeแนวทางการเขียน |
|
|
|
|
|
|
|
realtime > WebSocket API
แบบผ่อน > REST API
เต่า > Web Scraping
ถ้าอยากใช้ API จาก Web ตลาดหุ้น อาจต้องรออีกนิดน่าจะใกล้คลอดแล้วครับ
https://developer.settrade.com/open-api/
ถ้ารีบ scrape เอาเลย
ภาษาใช้ได้ทุกภาษาตามที่ถนัดครับ
Web Service > PHP, .NET, JavaScript, ...
Database > MySQL, MariaDB, Postgre SQL, SQLite, ...
iOS > Object-C, Swift
Android > Java, Kotlin
ดึงเฉพาะข้อมูล หรือ แสดงทั้งเว็บด้วย WebView
Code (Java)
mywebview = (WebView)findViewById(R.id.webView);
WebSettings webSettings = mywebview.getSettings();
webSettings.setJavaScriptEnabled(true);
mywebview.loadUrl(“https://marketdata.set.or.th/mkt/stockquotation.do?symbol=PTT&language=th&country=TH");
mywebview.setWebViewClient(new WebViewClient());
Code (Objective-C)
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
NSURL *url = [NSURL URLWithString:@"https://th.investing.com/equities/ptt"];
[self.webView loadRequest:[NSURLRequest requestWithURL:url]];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
ค้นหาตามคีย์เวิร์ดที่ให้ไปครับ
|
|
|
|
|
Date :
2020-03-24 21:13:19 |
By :
PhrayaDev |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|