The application that implements Twitter login suddenly rejected that it did not work.

Asked 2 years ago, Updated 2 years ago, 82 views

I'm not an engineer, but my fellow foreign engineer can't find a clue to the solution. Let me ask you a question.

Currently, I am implementing Twitter login with the iOS app I am running.
It was working as usual until now
I submitted an update to Apple the other day and received a reject.

The content was that if you tap Twitter login, an app called (Musica) will open.
We checked everything on the test flight and DEMO, but we couldn't confirm this phenomenon.

I have a question for those who understand or have experienced it, but what do you think is suspicious in this case?

In amateur opinion,
· API problems
·URL problem
·Virus
·Code problem
·Problem with Apple's device checking the application

I thought it was one of these, but our engineers said none of them were true.

If things go on like this, I will be in trouble because I can't update the app.
If anyone has similar experience or has any other ideas,
It would be very helpful if you could help me.

There is no problem with the technical response.I'm going to translate it into English and check with the engineer.

Supplement
login code:

TWTRTwitter.sharedInstance().logIn(){(session, error)in 
    iflet session=session{}
}

authentication:

let key=Bundle.main.object (forInfoDictionaryKey: "consumerKey"),
secret=Bundle.main.object(forInfoDictionaryKey: "consumerSecret")
iflet key = key as ? String, let secret=secret as?String, !key.isEmpty&!secret.isEmpty{
    TWTRTwitter.sharedInstance().start(withConsumerKey:key,consumerSecret:secret)
}

ios twitter

2022-09-30 21:37

1 Answers

The answer is probably
Does the Twitter client in the reviewer have its own app set up?

I think you are using TwitterKit, but
The behavior changes depending on whether you have registered an account with an iOS device or not.
I think the application that opens depends on what is installed on the default Twitter client.
(Also, even if you open it on the web, if the proxy is configured on the access point,
I wonder if the Twitter site might not appear...)

There are many times when Apple reviews cannot reproduce the behavior.
(For example, apps that get something from your location, distance, etc., or
Apps that show their true colors after the number of users increases)
In that case, we will make a limited release of videos of all movements on YouTube, etc.
I think it would be good to share the URL with the reviewer and share the normal behavior.

After that, I was wondering if you could send me a screenshot of what kind of screen the reviewer had...


2022-09-30 21:37

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.