-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iphone 5 and 4s can't fetch data #2423
Comments
Hi @mkaya93 do you get any logs in xcode? I don't see any reason why it will not work on iPhone 4/5 but on other devices it will work. |
We are closing this issue due to a lack of sufficient information. Please refer to this issue for an example of a great bug report. You may use Server Fault for questions about managing Parse Server. For code-level and/or implementation-related questions or technical support, please refer to Stack Overflow. |
I'm experiencing the same problem. Did you figure out why this was happening? |
HTTPS issue? HTTP issue? ATS? |
Thank you for the quick response! I have an app created in Swift running on parse server hosted by Heroku. When the app runs on iPhone 5s or newer (in the Xcode simulator and in real life), a query finds objects. Only on the iPhone 5 does the same query not find objects. Is there any reason for this that you can think of? The iOS versions are the same in each case. |
Can you use the request interceptor? Probably that may help. Are the queries received on the server? You can turn on verbose logging with setting the VERBOSE=1 env. variable |
Hi @bhirshman1, I was just changed query and its worked properly. But I'm not remembering which parts I changed on query. |
Interesting... You recall experiencing the same thing I am though? Your query yielded no objects when using an iPhone 5, yet found objects when using a 5s, 6, etc.? Quite honestly we might be the only 2 people ever to experience this, considering I can't find anything else on the internet mentioning it. |
So it turns out that iPhone 5s and newer are 64-bit devices, as opposed to 32-bit for iPhone 5 and older. 32-bit devices can't successfully query when a key is an array. My explanation I'm sure isn't the most technically sophisticated. It's explained better in the below links. Seems the only solution at the moment is a work around on the server side, which i'm hesitant to do. |
last version of parse
self hosted on azure
Problem is on iPhone 4s and 5 I can't fetch data's.But in other devices its works.Also I can make login process and some other queries too. Also that's not giving me an error.
This is my code
The text was updated successfully, but these errors were encountered: