JavaScript

RSS for tag

Discuss the JavaScript programing language.

Posts under JavaScript tag

200 Posts

Post

Replies

Boosts

Views

Activity

Script connection error in mobile ios16 version
hello. We will send you an e-mail if you have any inquiries during web system maintenance. It only occurs on iPhone iOS 16 or later. The js files linked to the JSP file with are not properly connected, so the screen is broken and the button does not work. The whole js file is not loaded, but it is cut and loaded to see if an error occurs, but it works normally in versions prior to Android and IOS16. Please reply after review. thank you
0
0
769
Nov ’22
What are the requirements for an insurance app to pass the review ?
Hello! I work as mobile developer in a legal company that produces insurance softwares. We're now working on a mobile app that works with some other websites and systems, its objective is to let our customers have easy access to their personal information, check amounts, do payments and more.. Our app is close to the following existing apps: Aetna Health app Oscar Health We'd like to know what we should do in addition to development and tests. Based on Apple store review guidelines, we understand that we must add anything related to modeling, functional spec and demos. I'd like to know if we must provide our modeling docs, like some diagrams or details about main use cases, actors (including external systems), sequences? or its unnecessary? FYI: Our app is built with a cross-platform technology known as Expo and React Native (You can look on Google if this new to you), and its intended to work on iOS and Android both. We consider OS as a modeling entity and we have some customizations based on each OS. I feel confused, and really need help before we proceed to review test. Please help. Thanks in advance!
2
0
1.1k
Nov ’22
iOS 16 beta3, Canvas appears blurry
We found that canvas of the same size is more blurry in iOS 16 Beta 3. Here's the code: <!DOCTYPE html> <html lang="en"> <head> <title>Document</title> <style> #app { height: 586px; width: 1170px; } </style> </head> <body> <canvas height="586px" width="1170px" id="app"></canvas> <script> const el = document.getElementById('app'); const ctx = el.getContext('2d'); ctx.font = '80px Arial'; ctx.fillText('Hello World', 100, 100) </script> </body> </html> Oddly enough, if you set the height of the code above to 585 px(one pixel less), the text on the canvas becomes clear. This will only happen with iOS Beta 3. ref: https://bugs.webkit.org/show_bug.cgi?id=242847
18
21
3.2k
Nov ’22
Safari IOS 16.0, css scale property bug
Hi there, Working on my website, I was using new shorthand property named scale. When using this scale property on a div to scale: 20; my images disappears (behind?) until scale transition ends. Works fine on Chrome. When using transform: scale(20) everything works fine. Link: https://drive.google.com/drive/folders/1HB13sujiXKI9xsm3h8g8dlaw0bFsIYrr?usp=sharing HTML : <div class="circle"></div> Css : .circle{   transition-duration: 600ms;   position: absolute;   width: 50px;   height: 50px;   background-color: red;   border-radius: 50%;   left: -50px;   top: -50px; } .scale-circle{   transition-duration: 600ms; scale: 20; /* BUG */ transform: scale(20); /* No bug */ } JS : const nav_overlay = document.querySelector('.circle') nav_overlay.classList.toggle('scale-circle')
0
1
2.1k
Oct ’22
IndexDB AbortError on ASWebAuthenticationSession
When opening a session to log into my website, there is, if exists, information stored in IndexDB we are trying to access from a previous session. Ideally, information from living in Safari, but would settle for information in the parent app or instance. My understanding was information 'like cookies' was available, but documentation is seemlingly vague around this topic. I have struggled to find anything explaining the availability of IndexDB specifically, although it does work in one case (I'm about to experiment with it, so I just know of one now). Upon first loading of the page, a get call: const ids: string[]; const results = await this.db.entities.bulkGet(ids); In the logs, I see there is this error: _e: Error: Error name: AbortError message: The operation was aborted. AbortError: The operation was aborted. inner: DOMException: The operation was aborted. Immediately after, because there is supposed to be some result from the database, the site creates a new entity, and stores it with no issue. This information does not persist however, as opening a second session, the same operation happens due to the same error. We're using XState, which typically is able to catch this error and continue, sometimes does not catch the error, and the state stands still. So far, this behavior has only been experience on iOS with ASWebAuthenticationSession (not ephemeral). Any insight would be appreciated, even if it means abandoning this webview class for something more for this purpose.
0
0
954
Oct ’22
White Space at the Bottom on IOS Safari
When I am applying the CSS property "position: fixed" on the body a white space appears at the bottom of the screen. steps to reproduce the issue: open any page on ios safari hide the address bar by scrolling up apply css property position fixed on body You will see the extra space at the bottom of the screen. This area will be filled with address bar if the address bar is open.
1
2
4.7k
Oct ’22
Detect a SFSafariViewController vs Safari Browser with Javascript
Hello! We are looking for a way to detect if the user is in a SFSafariViewController or Safari Browser using Javascript. I was hoping for something in the window object, but there's nothing. I know some people have used window.innerHeight to do this for iOS versions up to iOS 14... but this does not work for iOS 15 & 16. And the only thing I could find on any forums are people saying that it cannot be done. I'm hoping that we could get a developer from Apple working on this ASAP, as we need to be able to do this.
1
3
1.2k
Oct ’22
On-Hold Wifi Login Feature
I have noticed when trying to configure a Wifi login via QR code (html/js) that although iOS prompts the user to 'Join Network', it fails to actually join the network. If testing the same QR via the camera, it approves the login. I'm sure this was working in the iOS 15 beta and stopped working at public release, and hasn't worked in iOS16 either. Has anybody else encountered this? Is this a known issue, or a bug? or am i missing something? Thanks
0
0
708
Sep ’22
Microphone is disabled when trying to record (using getUserMedia)
I built a simple recorder on my website for users to record and playback audio. It works on ALL desktop browsers (including Safari) but when I use any browser on my iPhone, the mic is active at the opposite time. The flow is: ask permission > user allows mic access > user presses record > records audio > saves and plays back On iPhone what's happening is after the user allows permission, the mic goes active (visualized by the mic icon in safari browser) and then once the user presses record, it disables the mic. I am using getUserMedia within a React.js app Why is it doing this?
1
0
1.6k
Sep ’22
Unable to use ALL cookies from webpage in my background script - [Safari App Extension]
Hi All. I am building a safari app extension which needs to make several HTTP requests from the background script. The HTTP requests need to use the Cookies that exist on my webpage. When I make the requests from my background script, I see 3 of my 4 cookies are added to the request cookie header, but the 4th cookie is not there. The 4th cookie has SameSite=Lax which seems to be the issue. When I manually change Lax to none, in my webpage's cookie storage, then the request goes through successfully from my background script. Does anyone know if there is a way to get/use cookies labeled as SameSite=Lax in my background script? I tried the broswer.cookies API, but it seems that the API will only retrieve non HttpOnly cookies, and my cookie has HttpOnly enabled as well, so this does not work. How can I make requests from my background script that need to use cookies from my webpage? P.S. This works in my chrome extension just fine, but it seems Safari has some restrictions Thanks in Advance :)
3
1
2k
Sep ’22
is there's a bug with evaluateJavaScript with WKWebView ?
I've created a simple projet, the purpose is to load a javascript webpage (https://www.myidtravel.com) and to programatically click a button. Basically I'm able to do all this stuff but not the click, the wkwebview is unchanged after the call of evaluateJavaScript (the completion Handler is ok with no error) With Safari or Chrome and the developer tools the click is working correctly: document.getElementById('button-1029').click(); I'm pretty new with JavaScript and I'm curious to see if it's a bug, or a bad implementation... Bellow you will see my implementation: import UIKit import WebKit class ViewController: UIViewController , WKNavigationDelegate{ var webView : WKWebView! override func loadView() { webView = WKWebView() webView.navigationDelegate = self view = webView } override func viewDidLoad() { super.viewDidLoad() let url = URL(string: "https://www.myidtravel.com/")! webView.load(URLRequest(url: url)) webView.customUserAgent = "Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1667.0 Safari/537.36" } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } //MARK:- WKNavigationDelegate func webView(_ webView: WKWebView, didFailProvisionalNavigation navigation: WKNavigation!, withError error: Error) { print(error.localizedDescription) } func webView(_ webView: WKWebView, didStartProvisionalNavigation navigation: WKNavigation!) { print("Strat to load") } func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) { print("finish to load") DispatchQueue.main.asyncAfter(deadline: .now() + 4) { webView.evaluateJavaScript("document.getElementById('button-1029').click();", completionHandler: { (value, err) in print(">>>>>>>>>>>>>>>>>>>> click click") if let error = err { print("Error click") print(error.localizedDescription) } }) } } }
1
1
2.6k
Sep ’22
Safari low performance on special js web content.
When view some special web content with js, as mentioned below(with right corner on "Continue",which showed in Chinese, you can refer the arrow, let it auto scroll will show the problem). Cause P-core to increase to more 100% cpu usage. The page is test under windows; under chrome on same OS environments, no problem. But on safari 15.6(macOS 12.5, m1 Mac mini), 16beta and tech preview always have the same issue. https://www.baidu.com/s?rsv_idx=1&amp;wd=%E9%87%8D%E5%BA%86%E5%9F%8E%E5%8F%A3%E5%8E%BF%E5%9F%8E%E4%BE%9B%E6%B0%B4%E6%B0%B4%E6%BA%90%E4%BB%85%E5%A4%9F%E6%94%AF%E6%92%91%E5%8D%81%E5%A4%A9&amp;fenlei=256&amp;ie=utf-8&amp;rsv_pq=c3e520bf0006d8d0&amp;oq=%E5%9B%9B%E5%B7%9D%E5%B0%8F%E4%BC%99%E9%AB%98%E6%B8%A9%E5%A4%A9%E5%8D%96%E5%86%B0%E5%9D%97%E6%97%A5%E5%85%A5%E8%BF%87%E4%B8%87&amp;rsv_t=1b91DUeCY7TbON4DYyf9mO8Ujl1zg9wmPQ0O%2BRUbRNO%2F3g42IBRjUsYmELE&amp;rqid=c3e520bf0006d8d0&amp;rsf=526d5fb04211f1d3aefdb673067d9d32_1_15_7&amp;rsv_dl=0_right_fyb_pchot_20811&amp;sa=0_right_fyb_pchot_20811
2
0
850
Sep ’22
401 Error after 20 Minutes
I´ve build an app that gets metrics (amount of downloads) from Appstore Connect, every time a website is opened (this will happen every hour when own build endpoint /metrics is opened). Everything is working, except one thing. The Token has an max duration of 20 Minutes. Which is no problem because my app is creating a new one every time the site is called. But I get an 401 Error not authorized, even though a new token is generated after 20 minutes when the app is running and is calling for data again. I am assuming the app is using the old token to verify and ends up in a loop. how to force the app to use the new token when the function is called again (/metrics is opened) instead of the old token?
3
0
1.7k
Sep ’22
Not working https call on Capacitor Nuxtjs App using axios under Xcode 13.4.1 on Monterey 12.5.1
Hi. I have one issue on my ios app. (connecting carers) All login and signup work on android and web app correctly well. And firebase login by email, google and apple work correctly well on ios app. But signup by email, google and apple doesn't work only on ios app First it creates new account from firebase. It works well. After that, when the user add new account in wordpress database, it calls wp api endpoints by https methods(get, post) using axios to create new account in wordpress database. But when we create new account in wp database via wp api by https call on ios app, it doesn't work only on ios app It works on web and android app well. I attached the screenshots here. Could you tell me what is the issue and why happended it? How can I fix the issue so that it can call the https by axios on ios app?
0
0
747
Aug ’22
I there a way to disable audioSession for particular website?
I want to disable a widget Now playing for a specific website. Can this be done with an injected script or with the standard macOS libraries?
Replies
0
Boosts
0
Views
880
Activity
Dec ’22
Script connection error in mobile ios16 version
hello. We will send you an e-mail if you have any inquiries during web system maintenance. It only occurs on iPhone iOS 16 or later. The js files linked to the JSP file with are not properly connected, so the screen is broken and the button does not work. The whole js file is not loaded, but it is cut and loaded to see if an error occurs, but it works normally in versions prior to Android and IOS16. Please reply after review. thank you
Replies
0
Boosts
0
Views
769
Activity
Nov ’22
What are the requirements for an insurance app to pass the review ?
Hello! I work as mobile developer in a legal company that produces insurance softwares. We're now working on a mobile app that works with some other websites and systems, its objective is to let our customers have easy access to their personal information, check amounts, do payments and more.. Our app is close to the following existing apps: Aetna Health app Oscar Health We'd like to know what we should do in addition to development and tests. Based on Apple store review guidelines, we understand that we must add anything related to modeling, functional spec and demos. I'd like to know if we must provide our modeling docs, like some diagrams or details about main use cases, actors (including external systems), sequences? or its unnecessary? FYI: Our app is built with a cross-platform technology known as Expo and React Native (You can look on Google if this new to you), and its intended to work on iOS and Android both. We consider OS as a modeling entity and we have some customizations based on each OS. I feel confused, and really need help before we proceed to review test. Please help. Thanks in advance!
Replies
2
Boosts
0
Views
1.1k
Activity
Nov ’22
iOS 16 beta3, Canvas appears blurry
We found that canvas of the same size is more blurry in iOS 16 Beta 3. Here's the code: <!DOCTYPE html> <html lang="en"> <head> <title>Document</title> <style> #app { height: 586px; width: 1170px; } </style> </head> <body> <canvas height="586px" width="1170px" id="app"></canvas> <script> const el = document.getElementById('app'); const ctx = el.getContext('2d'); ctx.font = '80px Arial'; ctx.fillText('Hello World', 100, 100) </script> </body> </html> Oddly enough, if you set the height of the code above to 585 px(one pixel less), the text on the canvas becomes clear. This will only happen with iOS Beta 3. ref: https://bugs.webkit.org/show_bug.cgi?id=242847
Replies
18
Boosts
21
Views
3.2k
Activity
Nov ’22
iPad Home Screen Web App no keyboard
I'm seeing an issue with a PWA when added to the home screen. The Keyboard will eventually stop opening. when clicking on an input field. this happens with bmw.com, instagram.com. Once it happens on one PWA, all PWA's are effected. Is this a known issue?
Replies
17
Boosts
6
Views
8.5k
Activity
Oct ’22
Safari IOS 16.0, css scale property bug
Hi there, Working on my website, I was using new shorthand property named scale. When using this scale property on a div to scale: 20; my images disappears (behind?) until scale transition ends. Works fine on Chrome. When using transform: scale(20) everything works fine. Link: https://drive.google.com/drive/folders/1HB13sujiXKI9xsm3h8g8dlaw0bFsIYrr?usp=sharing HTML : <div class="circle"></div> Css : .circle{   transition-duration: 600ms;   position: absolute;   width: 50px;   height: 50px;   background-color: red;   border-radius: 50%;   left: -50px;   top: -50px; } .scale-circle{   transition-duration: 600ms; scale: 20; /* BUG */ transform: scale(20); /* No bug */ } JS : const nav_overlay = document.querySelector('.circle') nav_overlay.classList.toggle('scale-circle')
Replies
0
Boosts
1
Views
2.1k
Activity
Oct ’22
IndexDB AbortError on ASWebAuthenticationSession
When opening a session to log into my website, there is, if exists, information stored in IndexDB we are trying to access from a previous session. Ideally, information from living in Safari, but would settle for information in the parent app or instance. My understanding was information 'like cookies' was available, but documentation is seemlingly vague around this topic. I have struggled to find anything explaining the availability of IndexDB specifically, although it does work in one case (I'm about to experiment with it, so I just know of one now). Upon first loading of the page, a get call: const ids: string[]; const results = await this.db.entities.bulkGet(ids); In the logs, I see there is this error: _e: Error: Error name: AbortError message: The operation was aborted. AbortError: The operation was aborted. inner: DOMException: The operation was aborted. Immediately after, because there is supposed to be some result from the database, the site creates a new entity, and stores it with no issue. This information does not persist however, as opening a second session, the same operation happens due to the same error. We're using XState, which typically is able to catch this error and continue, sometimes does not catch the error, and the state stands still. So far, this behavior has only been experience on iOS with ASWebAuthenticationSession (not ephemeral). Any insight would be appreciated, even if it means abandoning this webview class for something more for this purpose.
Replies
0
Boosts
0
Views
954
Activity
Oct ’22
White Space at the Bottom on IOS Safari
When I am applying the CSS property "position: fixed" on the body a white space appears at the bottom of the screen. steps to reproduce the issue: open any page on ios safari hide the address bar by scrolling up apply css property position fixed on body You will see the extra space at the bottom of the screen. This area will be filled with address bar if the address bar is open.
Replies
1
Boosts
2
Views
4.7k
Activity
Oct ’22
Detect a SFSafariViewController vs Safari Browser with Javascript
Hello! We are looking for a way to detect if the user is in a SFSafariViewController or Safari Browser using Javascript. I was hoping for something in the window object, but there's nothing. I know some people have used window.innerHeight to do this for iOS versions up to iOS 14... but this does not work for iOS 15 & 16. And the only thing I could find on any forums are people saying that it cannot be done. I'm hoping that we could get a developer from Apple working on this ASAP, as we need to be able to do this.
Replies
1
Boosts
3
Views
1.2k
Activity
Oct ’22
our product website is not publishing on iPhone.
https://documentation.mindsphere.io/MindSphere/apps/asset-manager/introduction.html This above website is not supported in iPhone with latest OS(iOS &gt;= 15). What is the issues ??? Why it is getting blocked on browser ??? Need some urgent help on this.
Replies
1
Boosts
0
Views
653
Activity
Sep ’22
On-Hold Wifi Login Feature
I have noticed when trying to configure a Wifi login via QR code (html/js) that although iOS prompts the user to 'Join Network', it fails to actually join the network. If testing the same QR via the camera, it approves the login. I'm sure this was working in the iOS 15 beta and stopped working at public release, and hasn't worked in iOS16 either. Has anybody else encountered this? Is this a known issue, or a bug? or am i missing something? Thanks
Replies
0
Boosts
0
Views
708
Activity
Sep ’22
Microphone is disabled when trying to record (using getUserMedia)
I built a simple recorder on my website for users to record and playback audio. It works on ALL desktop browsers (including Safari) but when I use any browser on my iPhone, the mic is active at the opposite time. The flow is: ask permission > user allows mic access > user presses record > records audio > saves and plays back On iPhone what's happening is after the user allows permission, the mic goes active (visualized by the mic icon in safari browser) and then once the user presses record, it disables the mic. I am using getUserMedia within a React.js app Why is it doing this?
Replies
1
Boosts
0
Views
1.6k
Activity
Sep ’22
Web extension development in safari with JS framework
Hey, I'm looking for a way to develop safari web extension with any JS frameworks like AngularJS / ReactJS. Can someone help me to understand if it's possible, or it can be done only with plain JS. Can I get any links/pages to refer for the same ?
Replies
0
Boosts
0
Views
880
Activity
Sep ’22
Unable to use ALL cookies from webpage in my background script - [Safari App Extension]
Hi All. I am building a safari app extension which needs to make several HTTP requests from the background script. The HTTP requests need to use the Cookies that exist on my webpage. When I make the requests from my background script, I see 3 of my 4 cookies are added to the request cookie header, but the 4th cookie is not there. The 4th cookie has SameSite=Lax which seems to be the issue. When I manually change Lax to none, in my webpage's cookie storage, then the request goes through successfully from my background script. Does anyone know if there is a way to get/use cookies labeled as SameSite=Lax in my background script? I tried the broswer.cookies API, but it seems that the API will only retrieve non HttpOnly cookies, and my cookie has HttpOnly enabled as well, so this does not work. How can I make requests from my background script that need to use cookies from my webpage? P.S. This works in my chrome extension just fine, but it seems Safari has some restrictions Thanks in Advance :)
Replies
3
Boosts
1
Views
2k
Activity
Sep ’22
is there's a bug with evaluateJavaScript with WKWebView ?
I've created a simple projet, the purpose is to load a javascript webpage (https://www.myidtravel.com) and to programatically click a button. Basically I'm able to do all this stuff but not the click, the wkwebview is unchanged after the call of evaluateJavaScript (the completion Handler is ok with no error) With Safari or Chrome and the developer tools the click is working correctly: document.getElementById('button-1029').click(); I'm pretty new with JavaScript and I'm curious to see if it's a bug, or a bad implementation... Bellow you will see my implementation: import UIKit import WebKit class ViewController: UIViewController , WKNavigationDelegate{ var webView : WKWebView! override func loadView() { webView = WKWebView() webView.navigationDelegate = self view = webView } override func viewDidLoad() { super.viewDidLoad() let url = URL(string: "https://www.myidtravel.com/")! webView.load(URLRequest(url: url)) webView.customUserAgent = "Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1667.0 Safari/537.36" } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } //MARK:- WKNavigationDelegate func webView(_ webView: WKWebView, didFailProvisionalNavigation navigation: WKNavigation!, withError error: Error) { print(error.localizedDescription) } func webView(_ webView: WKWebView, didStartProvisionalNavigation navigation: WKNavigation!) { print("Strat to load") } func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) { print("finish to load") DispatchQueue.main.asyncAfter(deadline: .now() + 4) { webView.evaluateJavaScript("document.getElementById('button-1029').click();", completionHandler: { (value, err) in print(">>>>>>>>>>>>>>>>>>>> click click") if let error = err { print("Error click") print(error.localizedDescription) } }) } } }
Replies
1
Boosts
1
Views
2.6k
Activity
Sep ’22
Safari low performance on special js web content.
When view some special web content with js, as mentioned below(with right corner on "Continue",which showed in Chinese, you can refer the arrow, let it auto scroll will show the problem). Cause P-core to increase to more 100% cpu usage. The page is test under windows; under chrome on same OS environments, no problem. But on safari 15.6(macOS 12.5, m1 Mac mini), 16beta and tech preview always have the same issue. https://www.baidu.com/s?rsv_idx=1&amp;wd=%E9%87%8D%E5%BA%86%E5%9F%8E%E5%8F%A3%E5%8E%BF%E5%9F%8E%E4%BE%9B%E6%B0%B4%E6%B0%B4%E6%BA%90%E4%BB%85%E5%A4%9F%E6%94%AF%E6%92%91%E5%8D%81%E5%A4%A9&amp;fenlei=256&amp;ie=utf-8&amp;rsv_pq=c3e520bf0006d8d0&amp;oq=%E5%9B%9B%E5%B7%9D%E5%B0%8F%E4%BC%99%E9%AB%98%E6%B8%A9%E5%A4%A9%E5%8D%96%E5%86%B0%E5%9D%97%E6%97%A5%E5%85%A5%E8%BF%87%E4%B8%87&amp;rsv_t=1b91DUeCY7TbON4DYyf9mO8Ujl1zg9wmPQ0O%2BRUbRNO%2F3g42IBRjUsYmELE&amp;rqid=c3e520bf0006d8d0&amp;rsf=526d5fb04211f1d3aefdb673067d9d32_1_15_7&amp;rsv_dl=0_right_fyb_pchot_20811&amp;sa=0_right_fyb_pchot_20811
Replies
2
Boosts
0
Views
850
Activity
Sep ’22
401 Error after 20 Minutes
I´ve build an app that gets metrics (amount of downloads) from Appstore Connect, every time a website is opened (this will happen every hour when own build endpoint /metrics is opened). Everything is working, except one thing. The Token has an max duration of 20 Minutes. Which is no problem because my app is creating a new one every time the site is called. But I get an 401 Error not authorized, even though a new token is generated after 20 minutes when the app is running and is calling for data again. I am assuming the app is using the old token to verify and ends up in a loop. how to force the app to use the new token when the function is called again (/metrics is opened) instead of the old token?
Replies
3
Boosts
0
Views
1.7k
Activity
Sep ’22
How many gigabytes of RAM do you need for development?
How many gigabytes of RAM do you need for development? please provide me with an honest answer.
Replies
4
Boosts
0
Views
1.6k
Activity
Aug ’22
Not working https call on Capacitor Nuxtjs App using axios under Xcode 13.4.1 on Monterey 12.5.1
Hi. I have one issue on my ios app. (connecting carers) All login and signup work on android and web app correctly well. And firebase login by email, google and apple work correctly well on ios app. But signup by email, google and apple doesn't work only on ios app First it creates new account from firebase. It works well. After that, when the user add new account in wordpress database, it calls wp api endpoints by https methods(get, post) using axios to create new account in wordpress database. But when we create new account in wp database via wp api by https call on ios app, it doesn't work only on ios app It works on web and android app well. I attached the screenshots here. Could you tell me what is the issue and why happended it? How can I fix the issue so that it can call the https by axios on ios app?
Replies
0
Boosts
0
Views
747
Activity
Aug ’22
xcode build succeed but doesn't run
Cant find a solution to this error.
Replies
0
Boosts
0
Views
722
Activity
Aug ’22