Posts tagged with ios

I’m encountering an issue with app-ads.txt verification in Google AdMob. I selected 'Verify App' in 'App Verification'. Despite following all the steps and confirming that the file is properly set up, I keep getting the error: "We couldn't verify", along with the following message from Google AdMob:

"Your details don't match the information in your AdMob account."

Here’s what I’ve done so far:

app-ads.txt File Accessibility:

The app-ads.txt file is hosted at:

Visiting either of these links returns the app-ads.txt content successfully. I validated the file’s format using adstxt.guru, and it states that the file is formatted correctly.

Developer Website and App Store Integration: The app is published on the Apple App Store, and clicking the 'App Support' link from the app listing successfully navigates to the company website: https://www.theiafintech.com/

Guide Reviewed: I’ve carefully reviewed the AdMob instructions here. Everything appears to match the requirements, as the file is publicly accessible on both HTTP and HTTPS formats.

Issue: Despite the above, Google AdMob is unable to verify the app-ads.txt file, and I continually get the error message "We couldn't verify."

Request: Could someone help identify what might be going wrong? Are there additional steps or requirements (beyond those outlined in the guide) that I might be missing? I’d really appreciate any insights or suggestions.

Thank you for your help!

FYI: Here’s what I get after selecting 'Verify App':

In my iOS swift application I have implemented a Facebook Sign-in. It worked perfectly. But recently when user try to login it is not redirecting to app after user successfully login. Its stuck in the below view. After click cancel it will call to Login method with fbloginresult.isCancelled. I have updated the SDK also but nothing has changed. Any help is appreciated.

I'm trying to get some facebook user's permissions but not all of them are listed to the user to grant/decline.

Using the FBLoginButton and setting the permissions to:

- email - pages_show_list - instagram_basic - pages_read_engagement - business_management - instagram_manage_insights 

The user is presented only with public_profile (mandatory) and email, the rest are not shown to be granted/declined.

Any subsequent request doesn't show them either.

I also set button.authType = .rerequest

To note that when I created a new facebook account for testing and this worked just fine. Could it be a particular setting on some accounts to not ask these permissions. The account(s) with issues are personal accounts (mine / colleagues)

What am I missing here?

There is no API reference for swift in Supabase for sign in a user through facebook. is there any other method for swift which i can use for facebook auth?

I have used this snippet to use google provider to authorize user in supabase...

client.auth.signInWithIdToken(credentials: OpenIDConnectCredentials(                     provider: provider,                     idToken: idToken,                     accessToken: accessToken                 )) 

I have a requirement to develop an iOS application in Unity that interacts with a server on Node.js.

One of the functions of this application is to display a WebView window. Within this WebView window, events can occur that we want to track and send data about these events to our application in Facebook (Meta), so we can then launch an advertising campaign optimized for one of the tracked events. We have a tracking system that identifies, for example, a purchase on the website displayed within the Unity application (this system is not built into the application), and we also have endpoints on our server that the Unity application accesses upon the first installation and each launch of the application. These endpoints send event data for the first installation and each launch using Conversions API to Facebook (Meta).

The problem is that we are not receiving SKAdNetwork attribution data for these events and, accordingly, cannot launch an advertising campaign for iOS 14+ users, which is a crucial criterion for us.

Facebook (Meta) Ads Manager gives us the following error when creating an advertising campaign for the application:

Facebook (Meta) Ads Manager message

Set up app events: To choose app events as the optimization for ad delivery, you need to set up app events in Events Manager first.

which most likely means that our SkAdNetwork Events are not configured. But we can’t configure them because we don’t receive SkAdNetwork attribution data. We are not getting this data because our SKAdNetwork setup is not complete, which is part of the original question (how do we do this?). Setting up SkAdNetwork Events requires SkAdNetwork Attribution data. We are receiving Event Data from our Graph API request. This data shown on a screenshot “Facebook (Meta) Event Data”. If this data will contain SkAdNetwork Attribution data then we will able to set up SkAdNetwork Events

Event data is successfully displayed in Facebook (Meta):

Facebook (Meta) Events data

How can we add SKAdNetwork support to the current configuration? If this is not possible in the current configuration, do we need to use the Facebook SDK for this?

This is the request that the server makes to Facebook (Meta) using the Conversions API:

var request = "https://graph.facebook.com/v20.0/{FacebookAppID}/activities"; var data = [     {         "event": "CUSTOM_APP_EVENTS",         "custom_events": [           {             "_eventName": "fb_mobile_purchase",             "_valueToSum": 100,             "fb_currency": "USD"           }         ],         "advertiser_id": "111111",         "extinfo": "[\n  \"mb1\"\n]",         "action_source": "website",         "event_time": {time},         "event_source_url": "https://example.com",         "advertiser_tracking_enabled": 1,         "application_tracking_enabled": 1,         "user_data": {           "external_id": "user123",           "client_ip_address": "192.168.1.1",           "client_user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",           "fbc": "fb.1.1625247600.abcdefg",           "fbp": "fb.1.1625247600.1234"         }       } ]; 

Previously, our applications used AppsFlyer, but we decided to discontinue its use. With AppsFlyer, we simply configured the MMP integration to set up SKAdNetwork Events on Facebook (Meta) and everything worked. I tried to do the MMP integration for the new approach, but it didn't work.