Giter Site home page Giter Site logo

Comments (9)

Jerrot avatar Jerrot commented on April 28, 2024 2

Any news on this? Given that the Facebook SDK 16.2.x is not working with Xcode 15.3 (see #2353) this is becoming a serious problem now.
Even if the Xcode 15.3 problem should be solved soon (which I expect), this issue is still a blocker on top and the only remaining walkaround is to stick with Xcode 15.2 - until Apple requires Xcode 15.3.

from facebook-ios-sdk.

TimoWaelischIdealo avatar TimoWaelischIdealo commented on April 28, 2024 1

It looks like it was silently fixed, but I would appreciate confirmation as well.

from facebook-ios-sdk.

ThanasethPatrickMongsup avatar ThanasethPatrickMongsup commented on April 28, 2024

{
"batch": "[{"relative_url":"[REDACTED_EXISTING_FB_APP_ID]?fields=app_events_feature_bitmask%2Cname%2Cdefault_share_mode%2Cios_dialog_configs%2Cios_sdk_dialog_flows.os_version%2817.2.1%29%2Cios_sdk_error_categories%2Csupports_implicit_sdk_logging%2Cgdpv4_nux_enabled%2Cgdpv4_nux_content%2Capp_events_session_timeout%2Clogging_token%2Crestrictive_data_filter_params%2Caam_rules%2Csuggested_events_setting%2Cprotected_mode_rules%2Cauto_log_app_events_default%2Cauto_log_app_events_enabled%2Cauto_event_mapping_ios&format=json&include_headers=false&os_version=17.2.1&sdk=ios","method":"GET"},{"relative_url":"[REDACTED_EXISTING_FB_APP_ID]?fields=app_events_feature_bitmask%2Cname%2Cdefault_share_mode%2Cios_dialog_configs%2Cios_sdk_dialog_flows.os_version%2817.2.1%29%2Cios_sdk_error_categories%2Csupports_implicit_sdk_logging%2Cgdpv4_nux_enabled%2Cgdpv4_nux_content%2Capp_events_session_timeout%2Clogging_token%2Crestrictive_data_filter_params%2Caam_rules%2Csuggested_events_setting%2Cprotected_mode_rules%2Cauto_log_app_events_default%2Cauto_log_app_events_enabled%2Cauto_event_mapping_ios&format=json&include_headers=false&os_version=17.2.1&sdk=ios","method":"GET"}]",
"batch_app_id": "[REDACTED_EXISTING_FB_APP_ID]"
}

from facebook-ios-sdk.

cnjsyyb avatar cnjsyyb commented on April 28, 2024

same problem

from facebook-ios-sdk.

rromanchuk avatar rromanchuk commented on April 28, 2024

to zuck: just pull AppEvents completely and start over. S2S CAPI only until then.

to community: FB refuses to document the fingerprinting extinfo , so if you need to build your own sdk, it's something like this.

import Foundation
import CoreTelephony
import UIKit

public struct ExtInfoPayload: Codable {
    public let extinfo: [String]

    public init() {
        let carrierName = CTTelephonyNetworkInfo().subscriberCellularProvider?.carrierName ?? ""
        let processorCount = ProcessInfo.processInfo.processorCount
        let totalDiskSpace: Int64 = try! FileManager.default.attributesOfFileSystem(forPath: NSHomeDirectory())[.systemSize] as! Int64
        let availableDiskSpace: Int64 = try! FileManager.default.attributesOfFileSystem(forPath: NSHomeDirectory())[.systemFreeSize] as! Int64
        let bundleId = Bundle.main.bundleIdentifier ?? ""
        let shortVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? ""
        let longVersion = Bundle.main.infoDictionary?[kCFBundleVersionKey as String] as? String  ?? ""

        let language = NSLocale.current.identifier
        let timeZoneAbbrev = NSTimeZone.system.abbreviation() ?? ""
        let screenRect = UIScreen.main.bounds
        let scale = String(format: "%.02f", UIScreen.main.scale)
        let timeZoneIdentifier = NSTimeZone.system.identifier
        
        let machine: String = {
            var systemInfo = utsname()
            uname(&systemInfo)
            return withUnsafePointer(to: &systemInfo.machine.0) { ptr in
                String(cString: ptr)
            }
        }()

        self.extinfo = [
            "i2",
            bundleId,
            shortVersion,
            longVersion,
            UIDevice.current.systemVersion,
            machine,
            language,
            timeZoneAbbrev,
            carrierName,
            String(Int(screenRect.size.width)),
            String(Int(screenRect.size.height)),
            scale,
            String(processorCount),
            String(totalDiskSpace),
            String(availableDiskSpace),
            timeZoneIdentifier
        ]
    }
}

from facebook-ios-sdk.

Jhood1101 avatar Jhood1101 commented on April 28, 2024

Hi baby

from facebook-ios-sdk.

Intouch-Song avatar Intouch-Song commented on April 28, 2024

This issue arose from version 16.3.1. After downgrading to version 16.2.0, the functionality has been restored.

from facebook-ios-sdk.

antoinepalazzolo avatar antoinepalazzolo commented on April 28, 2024

It's been nearly two months since this issue was reported, and it appears that no one from the Facebook team has addressed it yet.

from facebook-ios-sdk.

scottlemke avatar scottlemke commented on April 28, 2024

Was this fixed in 17.0? I would love to update to get the Privacy manifests, but if this is not fixed, I can't update.

from facebook-ios-sdk.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.