Hello World...
플러터 iOS WebView 구글 로그인 403 Error 본문
플러터 ios 웹뷰 구현 중 구글 로그인 403 에러가 발생하였다.
다음과 같이 작성하니 해결되었다.
class HomeScreen extends StatelessWidget {
const HomeScreen({super.key});
@override
Widget build(BuildContext context) {
return const Scaffold(
body: WebView(
userAgent: "random",
initialUrl: 'https://example.com',
javascriptMode: JavascriptMode.unrestricted,
),
);
}
}
https://dev.to/suraj975/flutter-webview-google-sigin-issue-3j2h
'flutter' 카테고리의 다른 글
플러터 카카오로그인 윈도우 invalid android_key_hash or ios_bundle_id or web_site_url (0) | 2024.01.06 |
---|---|
플러터 - 아이폰 기기에서 개발자 모드로 앱 실행해보기 (1) | 2023.12.07 |
플러터 Dio url localhost 에러 관련 (0) | 2023.12.06 |
Flutter current path (1) | 2023.12.06 |
Comments