เปิดหน้า Facebook จากแอพ Android หรือไม่


157

จากแอพ Android ของฉันฉันต้องการเปิดลิงก์ไปยังโปรไฟล์ Facebook ในแอพ Facebook อย่างเป็นทางการ (ถ้าติดตั้งแอพไว้แน่นอน) สำหรับ iPhone มีมีอยู่fb://โครงการ URL แต่พยายามในสิ่งเดียวกันบนอุปกรณ์ Android ActivityNotFoundExceptionของฉันพ่น

มีโอกาสที่จะเปิดโปรไฟล์ Facebook ในแอพ Facebook อย่างเป็นทางการจากรหัสหรือไม่


2
มีกระทู้ที่ไม่มีคำตอบในฟอรัม facebook dev: forum.developers.facebook.net/viewtopic.php?pid=255227 (เพิ่มที่นี่เพราะมันแสดงให้เห็นว่าไม่มีคำตอบที่ชัดเจนและบางทีมันอาจจะได้ ตอบที่นั่นสักวัน ... )
เจมส์มัวร์

คุณสามารถดูคำตอบของฉันจากที่นี่
Mohammad Sommakia

คำตอบ:


152

ใน Facebook เวอร์ชั่น 11.0.0.11.23 (3002850) fb://profile/และfb://page/ไม่ทำงานอีกต่อไป ฉันแยกแอป Facebook ออกและพบว่าคุณสามารถfb://facewebmodal/f?href=[YOUR_FACEBOOK_PAGE]ใช้ได้ นี่คือวิธีที่ฉันใช้ในการผลิต:

/**
 * <p>Intent to open the official Facebook app. If the Facebook app is not installed then the
 * default web browser will be used.</p>
 *
 * <p>Example usage:</p>
 *
 * {@code newFacebookIntent(ctx.getPackageManager(), "https://www.facebook.com/JRummyApps");}
 *
 * @param pm
 *     The {@link PackageManager}. You can find this class through {@link
 *     Context#getPackageManager()}.
 * @param url
 *     The full URL to the Facebook page or profile.
 * @return An intent that will open the Facebook page/profile.
 */
public static Intent newFacebookIntent(PackageManager pm, String url) {
  Uri uri = Uri.parse(url);
  try {
    ApplicationInfo applicationInfo = pm.getApplicationInfo("com.facebook.katana", 0);
    if (applicationInfo.enabled) {
      // http://stackoverflow.com/a/24547437/1048340
      uri = Uri.parse("fb://facewebmodal/f?href=" + url);
    }
  } catch (PackageManager.NameNotFoundException ignored) {
  }
  return new Intent(Intent.ACTION_VIEW, uri);
}

4
@DjHacktorReborn คุณไม่ควรใช้รหัสอีกต่อไป เพียงใช้ลิงก์ปกติ
Jared Rummler

2
@DjHacktorReborn เพิ่งตรวจสอบทำงานที่นี่ ใน Facebook เวอร์ชั่น 13.0.0.13.14
Jared Rummler

1
@AbdulWasae มันได้ทำงานในแอพที่มีการดาวน์โหลดนับล้าน หากคุณมีวิธีแก้ปัญหาที่ดีกว่าโปรดโพสต์ไว้แทนการแก้ไขปัญหาการทำงาน
Jared Rummler

4
ทุกคนสามารถยืนยันได้ว่ามันยังใช้งานได้? (ณ เดือนมิถุนายน 2562) ฉันยังคงได้รับActivityNotFoundException
nVxx

5
นี่เป็นการเปิดหน้า Facebook แต่ไม่เหมือนกับหน้า fb ทั่วไปเราไม่เห็นปุ่มถูกใจโปรไฟล์และหน้าปก ฯลฯ มันเปิดข้อมูลผู้ติดต่อโดยตรงและแสดงโพสต์ทั้งหมดจากหน้า
Neeraj Dwivedi

235

สิ่งนี้ใช้ได้กับเวอร์ชั่นล่าสุด:

  1. ไปที่https://graph.facebook.com/ < user_name_here > ( เช่นhttps://graph.facebook.com/fsintentsเป็นต้น)
  2. คัดลอกรหัสของคุณ
  3. ใช้วิธีนี้:

    public static Intent getOpenFacebookIntent(Context context) {
    
       try {
        context.getPackageManager().getPackageInfo("com.facebook.katana", 0);
        return new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/<id_here>"));
       } catch (Exception e) {
        return new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/<user_name_here>"));
       }
    }

นี่จะเป็นการเปิดแอพ Facebook หากผู้ใช้ติดตั้งไว้ มิฉะนั้นจะเปิด Facebook ในเบราว์เซอร์

แก้ไข: ตั้งแต่เวอร์ชัน 11.0.0.11.23 (3002850) แอพ Facebook ไม่รองรับวิธีนี้อีกต่อไปมีวิธีอื่นตรวจสอบการตอบสนองด้านล่างจาก Jared Rummler


1
ขอบคุณสำหรับสิ่งนี้ช่วยฉันออกไปอย่างมาก! ตอนนี้ถ้ามีวิธีที่จะทำเพื่อ Twitter
Evan R.

3
สำหรับรายการโครงร่าง url ที่มีอยู่บน iOS ดูwiki.akosma.com/IPhone_URL_Schemes - บางอันควรทำงานบน Android ด้วย
FrancescoR

7
& นี่คือคำตอบของปัญหานั้น ใช้ "หน้า" แทนโปรไฟล์ - stackoverflow.com/a/15872383/1433187
Khobaib

1
เพิ่งทราบว่า fb: // profile / ไม่ได้รับการสนับสนุนบนแอพ Facebook v1.3.2 ซึ่งรวมอยู่ในสต็อก Nexus One 2.3.6
ทำเครื่องหมาย

3
DjHacktorReborn ถูกต้องทั้ง fb: // profile / <fpid> และ fb: // page / <fpid> กำลังทำงานอีกต่อไปเริ่มต้น fb v11
sam

38

มันไม่ง่ายใช่ไหม? ตัวอย่างเช่นภายใน onClickListener?

try {
    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/426253597411506"));
    startActivity(intent);
} catch(Exception e) {
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.facebook.com/appetizerandroid")));
}

PS รับ ID ของคุณ (จำนวนมาก) จาก http://graph.facebook.com/ [ชื่อผู้ใช้]


ฉันเห็นด้วยนี่เป็นสิ่งที่ดีกว่าเพราะมันไม่ได้ตั้งสมมติฐานเกี่ยวกับชื่อแพ็คเกจแอพ Facebook หรือตัวกรองเจตนา อย่างไรก็ตามมันแย่กว่าเดิมด้วยเหตุผลเดียวกันเพราะแอพอื่นอาจระบุตัวกรองเจตนาที่ตรงกัน มันขึ้นอยู่กับสิ่งที่คุณต้องการ อาจเพิ่มคุณที่ตั้งใจทำ. setPackageName ("com.facebook.katana") เพื่อให้แน่ใจว่าไม่มีแอพอื่น ๆ ถูกเรียก
ทำเครื่องหมาย

แต่มันจะเปิดเบราว์เซอร์และมีข้อมูล Facebook แสดงให้เห็นว่าเป็นไปได้อย่างไรที่จะใช้ Facebook App (เพื่อโทรไปยังแอพ Facebook)
Mikheil Zhghenti

32

สำหรับหน้า Facebook:

try {
    intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/" + pageId));
} catch (Exception e) {
    intent =  new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/" + pageId));
}

สำหรับโปรไฟล์ Facebook:

try {
    intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/" + profileId));
} catch (Exception e) {
    intent =  new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/" + profileId));
}

... เพราะไม่มีคำตอบใดที่ชี้ให้เห็นความแตกต่าง

ทั้งทดสอบกับ Facebook v.27.0.0.24.15 และ Android 5.0.1 บน Nexus 4


สวัสดีวิธีการทราบความแตกต่างระหว่างโปรไฟล์และหน้า?
alvarodoune

1
โปรไฟล์สำหรับบุคคลที่มีหน้าสำหรับ บริษัท สถานที่แบรนด์ โปรดดูที่: facebook.com/help/217671661585622 [ชื่อ: หน้าแตกต่างจากโปรไฟล์ส่วนตัวอย่างไร]
Murmel

สำหรับโน้ต: เจตนา = เจตนาใหม่ (Intent.ACTION_VIEW, Uri.parse ("fb: // note /" + facebookNoteId));
voodoo98

1
ในการค้นหา Id สำหรับหน้าสาธารณะกิจกรรมโปรไฟล์คุณสามารถใช้FindMyFbId
Carlos Zerga

โปรไฟล์ไม่เปิดขึ้นในแอพ Facebook
Hammad Nasir

27

นี่คือวิธีการทำในปี 2559 ใช้งานได้ดีและง่ายมาก

ฉันค้นพบสิ่งนี้หลังจากดูว่าอีเมลที่ส่งโดย facebook เปิดแอพอย่างไร

// e.g. if your URL is https://www.facebook.com/EXAMPLE_PAGE, you should put EXAMPLE_PAGE at the end of this URL, after the ?
String YourPageURL = "https://www.facebook.com/n/?YOUR_PAGE_NAME";
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(YourPageURL));

startActivity(browserIntent);

1
ทำงานได้อย่างสมบูรณ์แบบแม้กระทั่งในปี 2016 แก้ไขปัญหาเมื่อคุณเรียกดู Facebook จากเบลเยียม (เมื่อคุกกี้ถูกปิดใช้งานเมื่อไม่ได้ล็อกออน)
doubotis

3
เมื่อฉันใช้สิ่งนี้ส่วนหัวของหน้า Facebook ที่ฉันกำลังอ้างอิงหายไปในแอพ Facebook เช่นรูปภาพโปรไฟล์ของหน้าและแท็บหน้า / กิจกรรม / ข้อมูลเชิงลึก
Daniel Persson

วิธีนี้ใช้ได้ผลถ้าคุณมีชื่อหน้า (ตามที่ระบุ) แต่จะไม่ทำงานหากคุณมี ID หน้าตัวเลข
Eric B.

5
ตกลง แต่ไม่ได้พาฉันไปยังหน้าเว็บที่สะอาดซึ่งผู้ใช้สามารถทำให้หน้าของฉันง่ายขึ้น .... ยังคงมองหาสิ่งนี้! ทางออกใด ๆ
Regis_AG

ใครต้องแก้ปัญหาสำหรับ @Regis_AG?
adrianvintu

22

นี่คือรหัสที่ง่ายที่สุดสำหรับการทำเช่นนี้

public final void launchFacebook() {
        final String urlFb = "fb://page/"+yourpageid;
        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setData(Uri.parse(urlFb));

        // If a Facebook app is installed, use it. Otherwise, launch
        // a browser
        final PackageManager packageManager = getPackageManager();
        List<ResolveInfo> list =
            packageManager.queryIntentActivities(intent,
            PackageManager.MATCH_DEFAULT_ONLY);
        if (list.size() == 0) {
            final String urlBrowser = "https://www.facebook.com/"+pageid;
            intent.setData(Uri.parse(urlBrowser));
        }

        startActivity(intent);
    }

มันไม่ทำงาน เมื่อฉันตั้งค่าลิงก์ " facebook.com/pages/"+pageid "
BSKANIA

งดเว้น 'pages /' - part -> ใช้ "facebook.com/" + pageId
Murmel

ยังคงทำงานเหมือนวันนี้! ขอบคุณมากฉันเปลี่ยนส่วนนี้ "" facebook.com/pages/"+pageid ; " ด้วยอันนี้ "" facebook.com/"+pageid ; "
naitbrahim

@naitbrahim ขอบคุณที่แจ้งให้เราทราบว่ามันยังใช้งานได้! ฉันได้แก้ไขคำตอบแล้ว btw คำตอบถูกโพสต์ในปี 2013 :) ดีใจที่ได้ช่วยคุณ
MBH

15

แนวทางที่นำมาใช้ใหม่ได้มากขึ้น

นี่คือฟังก์ชั่นที่เราใช้โดยทั่วไปในแอพส่วนใหญ่ของเรา ดังนั้นนี่คือชิ้นส่วนของรหัสที่นำมาใช้ซ้ำเพื่อให้บรรลุนี้

(คล้ายกับคำตอบอื่น ๆ ในแง่ของข้อเท็จจริงโพสต์ไว้ที่นี่เพียงเพื่อทำให้ง่ายขึ้นและทำให้การนำมาใช้ซ้ำ)

"fb://page/ไม่ทำงานกับแอพ FB เวอร์ชั่นใหม่กว่า คุณควรใช้fb://facewebmodal/f?href=สำหรับเวอร์ชันที่ใหม่กว่า ( เช่นที่กล่าวถึงในคำตอบอื่นที่นี่ )

นี่เป็นรหัสการทำงานที่สมบูรณ์ซึ่งปัจจุบันใช้งานในหนึ่งในแอพของฉัน:

public static String FACEBOOK_URL = "https://www.facebook.com/YourPageName";
public static String FACEBOOK_PAGE_ID = "YourPageName";

//method to get the right URL to use in the intent
public String getFacebookPageURL(Context context) {
        PackageManager packageManager = context.getPackageManager();
        try {
            int versionCode = packageManager.getPackageInfo("com.facebook.katana", 0).versionCode;
            if (versionCode >= 3002850) { //newer versions of fb app
                return "fb://facewebmodal/f?href=" + FACEBOOK_URL;
            } else { //older versions of fb app
                return "fb://page/" + FACEBOOK_PAGE_ID;
            }
        } catch (PackageManager.NameNotFoundException e) {
            return FACEBOOK_URL; //normal web url
        }
    }

วิธีนี้จะส่งคืน URL ที่ถูกต้องสำหรับแอปหากติดตั้งหรือเว็บ URL หากไม่ได้ติดตั้งแอป

จากนั้นเริ่มเจตนาดังนี้

Intent facebookIntent = new Intent(Intent.ACTION_VIEW);
String facebookUrl = getFacebookPageURL(this);
facebookIntent.setData(Uri.parse(facebookUrl));
startActivity(facebookIntent);

นั่นคือทั้งหมดที่คุณต้องการ


มันโยน "android.content.ActivityNotFoundException: ไม่พบกิจกรรมใด ๆ ในการจัดการ Intent {act = android.intent.action.VIEW dat = fb: // หน้า / ####}"
Rajbir Shienh

9

สิ่งนี้ได้รับการออกแบบวิศวกรรมย้อนกลับโดย Pierre87 บนฟอรัม FrAndroidแต่ฉันไม่สามารถหาได้อย่างเป็นทางการทุกที่ที่อธิบายมันดังนั้นมันจะต้องได้รับการปฏิบัติเหมือนไม่มีเอกสารและมีแนวโน้มที่จะหยุดทำงานในเวลาใด ๆ :

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setClassName("com.facebook.katana", "com.facebook.katana.ProfileTabHostActivity");
intent.putExtra("extra_user_id", "123456789l");
this.startActivity(intent);

ใช่วิธีแก้ปัญหาหยุดทำงาน ข้อผิดพลาดคือ: "java.lang.SecurityException?: การปฏิเสธสิทธิ์: เริ่มต้นเจตนา {flg = 0x10080000 cmp = com.facebook.katana / .ProfileTabHostActivity? (มีความพิเศษ)} จาก ProcessRecord?" กิจกรรม ProfileTabHostActivity ไม่มี android: ส่งออกค่าสถานะใน AndroidManifest ดังนั้นโดยค่าเริ่มต้น android: ส่งออก = "false" สำหรับกิจกรรมนี้ เนื่องจาก ProfileTabHostActivity ผลลัพธ์ไม่สามารถเปิดใช้งานโดยแอปพลิเคชันอื่น ความหวังเดียวที่นักพัฒนา FB จะแก้ไขปัญหานี้ได้ในแอพพลิเคชั่นรุ่น FB ของฟีเจอร์
dvpublic

ฉันคิดว่าการแก้ไขคือการปิด "อุบัติเหตุ API" นี้
Vaiden

7

ลองรหัสนี้:

String facebookUrl = "https://www.facebook.com/<id_here>";
        try {
            int versionCode = getPackageManager().getPackageInfo("com.facebook.katana", 0).versionCode;
            if (versionCode >= 3002850) {
                Uri uri = Uri.parse("fb://facewebmodal/f?href=" + facebookUrl);
                   startActivity(new Intent(Intent.ACTION_VIEW, uri));
            } else {
                Uri uri = Uri.parse("fb://page/<id_here>");
                startActivity(new Intent(Intent.ACTION_VIEW, uri));
            }
        } catch (PackageManager.NameNotFoundException e) {
            startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(facebookUrl)));
        }

7

ในการทำเช่นนี้เราจำเป็นต้องมี "รหัสหน้า Facebook" คุณสามารถรับ:

  • จากหน้าไปที่ "เกี่ยวกับ"
  • ไปที่ส่วน "ข้อมูลเพิ่มเติม"

แนะนำตัวเองจาก de la imagen aquí

วิธีเปิดแอพ facebook ในหน้าโปรไฟล์ที่ระบุ

คุณสามารถทำสิ่งนี้:

 String facebookId = "fb://page/<Facebook Page ID>";
  startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(facebookId)));

หรือคุณสามารถตรวจสอบได้เมื่อไม่ได้ติดตั้งแอพ facebook จากนั้นเปิดหน้าเว็บของ Facebook

String facebookId = "fb://page/<Facebook Page ID>";
String urlPage = "http://www.facebook.com/mypage";

     try {
          startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(facebookId )));
        } catch (Exception e) {
         Log.e(TAG, "Application not intalled.");
         //Open url web page.
         startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
        }

ฉันไม่เห็นสิ่งนี้Page IDจากแท็บ about เป็นส่วนตัวหรือไม่
RoCk RoCk

5

หลังจากการทดสอบหลายครั้งฉันได้พบหนึ่งในโซลูชั่นที่มีประสิทธิภาพสูงสุด:

private void openFacebookApp() {
    String facebookUrl = "www.facebook.com/XXXXXXXXXX";
    String facebookID = "XXXXXXXXX";

    try {
        int versionCode = getActivity().getApplicationContext().getPackageManager().getPackageInfo("com.facebook.katana", 0).versionCode;

        if(!facebookID.isEmpty()) {
            // open the Facebook app using facebookID (fb://profile/facebookID or fb://page/facebookID)
            Uri uri = Uri.parse("fb://page/" + facebookID);
            startActivity(new Intent(Intent.ACTION_VIEW, uri));
        } else if (versionCode >= 3002850 && !facebookUrl.isEmpty()) {
            // open Facebook app using facebook url
            Uri uri = Uri.parse("fb://facewebmodal/f?href=" + facebookUrl);
            startActivity(new Intent(Intent.ACTION_VIEW, uri));
        } else {
            // Facebook is not installed. Open the browser
            Uri uri = Uri.parse(facebookUrl);
            startActivity(new Intent(Intent.ACTION_VIEW, uri));
        }
    } catch (PackageManager.NameNotFoundException e) {
        // Facebook is not installed. Open the browser
        Uri uri = Uri.parse(facebookUrl);
        startActivity(new Intent(Intent.ACTION_VIEW, uri));
    }
}

4

คำตอบของฉันสร้างขึ้นจากคำตอบที่ได้รับการยอมรับอย่างกว้างขวางจาก joaomgcd หากผู้ใช้ติดตั้ง Facebook แต่ถูกปิดใช้งาน (ตัวอย่างเช่นโดยใช้ App Quarantine) วิธีนี้จะไม่ทำงาน เจตนาสำหรับแอพ Twitter จะถูกเลือก แต่จะไม่สามารถดำเนินการได้เนื่องจากปิดการใช้งาน

แทน:

context.getPackageManager().getPackageInfo("com.facebook.katana", 0);
return new Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/620681997952698"));

คุณสามารถใช้สิ่งต่อไปนี้เพื่อตัดสินใจว่าจะทำอย่างไร:

PackageInfo info = context.getPackageManager().getPackageInfo("com.facebook.katana", 0);
if(info.applicationInfo.enabled)
    return new Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/620681997952698"));
else
    return new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/620681997952698"));

4

คำตอบที่ดีที่สุดที่ฉันได้พบมันใช้งานได้ดี

เพียงไปที่เพจของคุณบน Facebook ในเบราว์เซอร์คลิกขวาและคลิกที่ "ดูซอร์สโค้ด" จากนั้นค้นหาpage_idแอตทริบิวต์: คุณต้องใช้page_idที่นี่ในบรรทัดนี้หลังจากสแลชสุดท้าย:

fb://page/pageID

ตัวอย่างเช่น:

Intent facebookAppIntent;
try {
    facebookAppIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/1883727135173361"));
    startActivity(facebookAppIntent);
} catch (ActivityNotFoundException e) {
    facebookAppIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://facebook.com/CryOut-RadioTv-1883727135173361"));
    startActivity(facebookAppIntent);
}

สิ่งนี้เหมาะสมสำหรับแอพแบบคงที่เท่านั้น
Irshu

4

เมื่อวันที่มีนาคม 2563งานนี้อย่างสมบูรณ์แบบ

private void openFacebookPage(String pageId) {
    String pageUrl = "https://www.facebook.com/" + pageId;

    try {
        ApplicationInfo applicationInfo = getPackageManager().getApplicationInfo("com.facebook.katana", 0);

        if (applicationInfo.enabled) {
            int versionCode = getPackageManager().getPackageInfo("com.facebook.katana", 0).versionCode;
            String url;

            if (versionCode >= 3002850) {
                url = "fb://facewebmodal/f?href=" + pageUrl;
            } else {
                url = "fb://page/" + pageId;
            }

            startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
        } else {
            throw new Exception("Facebook is disabled");
        }
    } catch (Exception e) {
        startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(pageUrl)));
    }
}

2
Intent intent = null;
    try {
        getPackageManager().getPackageInfo("com.facebook.katana", 0);
        String url = "https://www.facebook.com/"+idFacebook;
        intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://facewebmodal/f?href="+url));
    } catch (Exception e) {
        // no Facebook app, revert to browser
        String url = "https://facebook.com/"+idFacebook;
        intent = new Intent(Intent.ACTION_VIEW);
        intent .setData(Uri.parse(url));
    }
    this.startActivity(intent);

2

ตั้งแต่เดือนกรกฎาคม 2018สิ่งนี้จะทำงานได้อย่างสมบูรณ์แบบไม่ว่าจะมีหรือไม่มีแอพ Facebook บนอุปกรณ์ทั้งหมด

private void goToFacebook() {
    try {
        String facebookUrl = getFacebookPageURL();
        Intent facebookIntent = new Intent(Intent.ACTION_VIEW);
        facebookIntent.setData(Uri.parse(facebookUrl));
        startActivity(facebookIntent);
    } catch (Exception e) {
        e.printStackTrace();
    }
}

private String getFacebookPageURL() {
    String FACEBOOK_URL = "https://www.facebook.com/Yourpage-1548219792xxxxxx/";
    String facebookurl = null;

    try {
        PackageManager packageManager = getPackageManager();

        if (packageManager != null) {
            Intent activated = packageManager.getLaunchIntentForPackage("com.facebook.katana");

            if (activated != null) {
                int versionCode = packageManager.getPackageInfo("com.facebook.katana", 0).versionCode;

                if (versionCode >= 3002850) {
                    facebookurl = "fb://page/1548219792xxxxxx";
                }
            } else {
                facebookurl = FACEBOOK_URL;
            }
        } else {
            facebookurl = FACEBOOK_URL;
        }
    } catch (Exception e) {
        facebookurl = FACEBOOK_URL;
    }
    return facebookurl;
}

แอป FB Lite มีชื่อแพคเกจแยกต่างหากถ้าคุณใช้วิธีนี้คุณควรตรวจสอบ com.facebook.lite - แม้ว่าฉันจะไม่ได้ตรวจสอบว่า Lite จะจัดการ URL เหล่านี้หรือไม่
androidguy

@androidguy ฉันไม่มี FB Lite มันเป็นการดีที่จะรู้ว่ารหัสทำงานกับมันหรือไม่ หากคุณสามารถทดสอบได้และนำข้อค้นพบของคุณมาที่นี่ก็จะช่วยให้ผู้อื่นที่ยังมาที่นี่ ชื่นชมขอบคุณ
Immy

@Immy -> Yourpage-1548219792xxxxxx ใน url คือ id หน้าหรือ url หน้า ดังนั้นสำหรับ ex: facebook.com/PageNameคือ url หน้าของฉันและ id เป็นอย่าง 2345676 ดังนั้น URL ที่จะกล่าวถึงในรหัสจะเป็นfacebook.com/PageNameหรืออย่างอื่น
Neeraj Dwivedi

@NeerajDwivedi คุณต้องการทั้งคู่: ชื่อหน้าและ ID หน้าของคุณใน URL บางสิ่งเช่นนี้: 'String FACEBOOK_URL = " facebook.com/BeanRoaster-1548219792112345/" ;'
Immy

@Immy ฉันใช้รหัสเดียวกันที่แน่นอนแทน FACEBOOK_URL เป็น " facebook.com/myPageName-myPageID " และฉันได้รับหน้าว่างด้วยแถบค้นหาที่ด้านบน ฉันใช้แอพ Facebook ล่าสุดบน Android 9 (เวอร์ชันแอป Fb - 237.0.0.44.120)
Neeraj Dwivedi

1

ฉันได้สร้างวิธีในการเปิดหน้า Facebook ลงในแอพ Facebook หากไม่มีแอพอยู่แล้วให้เปิดด้วย Chrome

    String socailLink="https://www.facebook.com/kfc";
    Intent intent = new Intent(Intent.ACTION_VIEW);
    String facebookUrl = Utils.getFacebookUrl(getActivity(), socailLink);
    if (facebookUrl == null || facebookUrl.length() == 0) {
        Log.d("facebook Url", " is coming as " + facebookUrl);
        return;
    }
    intent.setData(Uri.parse(facebookUrl));
    startActivity(intent);

Utils.classเพิ่มวิธีการเหล่านี้

public static String getFacebookUrl(FragmentActivity activity, String facebook_url) {
    if (activity == null || activity.isFinishing()) return null;

    PackageManager packageManager = activity.getPackageManager();
    try {
        int versionCode = packageManager.getPackageInfo("com.facebook.katana", 0).versionCode;
        if (versionCode >= 3002850) { //newer versions of fb app
            Log.d("facebook api", "new");
            return "fb://facewebmodal/f?href=" + facebook_url;
        } else { //older versions of fb app
            Log.d("facebook api", "old");
            return "fb://page/" + splitUrl(activity, facebook_url);
        }
    } catch (PackageManager.NameNotFoundException e) {
        Log.d("facebook api", "exception");
        return facebook_url; //normal web url
    }
}

และนี่

 /***
 * this method used to get the facebook profile name only , this method split domain into two part index 0 contains https://www.facebook.com and index 1 contains after / part
 * @param context contain context
 * @param url contains facebook url like https://www.facebook.com/kfc
 * @return if it successfully split then return "kfc"
 *
 * if exception in splitting then return "https://www.facebook.com/kfc"
 *
 */
 public static String splitUrl(Context context, String url) {
    if (context == null) return null;
    Log.d("Split string: ", url + " ");
    try {
        String splittedUrl[] = url.split(".com/");
        Log.d("Split string: ", splittedUrl[1] + " ");
        return splittedUrl.length == 2 ? splittedUrl[1] : url;
    } catch (Exception ex) {
        return url;
    }
}

3
ในเวอร์ชันล่าสุดนี่เป็นการพาฉันไปที่หน้าเกี่ยวกับในขณะที่ฉันกำลังค้นหาเส้นทางไปยังหน้าแรก เคล็ดลับใด ๆ
Balaji Katika

คุณพบวิธีแก้ปัญหาหรือไม่?
Aman Verma

1

หากต้องการเปิดหน้า Facebookจากแอพของคุณให้ urlString = "fb: // หน้า / your_fb_page_id"

วิธีเปิดใช้facebook messengerให้ urlString = "fb-messenger: // user / your_fb_page_id"

รหัสหน้า FB คือตัวเลข ในการรับมันไปที่Find ID FB ของฉันป้อน URL โปรไฟล์ของคุณอย่างwww.facebook.com/edgedevstudioจากนั้นคลิก "Find Numberic ID"

Voila ตอนนี้คุณมีรหัสตัวเลข fb ของคุณแล้ว แทนที่ "your_fb_page_id" ด้วยรหัสตัวเลขที่สร้างขึ้น

 val intent = Intent(Intent.ACTION_VIEW, Uri.parse(urlString))
 if (intent.resolveActivity(packageManager) != null) //check if app is available to handle the implicit intent
 startActivity(intent)

1

ประกาศค่าคงที่

  private String FACEBOOK_URL="https://www.facebook.com/approids";
    private String FACEBOOK_PAGE_ID="approids";

ประกาศวิธีการ

public String getFacebookPageURL(Context context) {
        PackageManager packageManager = context.getPackageManager();
        try {
            int versionCode = packageManager.getPackageInfo("com.facebook.katana", 0).versionCode;

            boolean activated =  packageManager.getApplicationInfo("com.facebook.katana", 0).enabled;
            if(activated){
                if ((versionCode >= 3002850)) {
                    Log.d("main","fb first url");
                    return "fb://facewebmodal/f?href=" + FACEBOOK_URL;
                } else {
                    return "fb://page/" + FACEBOOK_PAGE_ID;
                }
            }else{
                return FACEBOOK_URL;
            }
        } catch (PackageManager.NameNotFoundException e) {
            return FACEBOOK_URL;
        }
    }

ฟังก์ชั่นการโทร

Intent facebookIntent = new Intent(Intent.ACTION_VIEW);
                String facebookUrl = getFacebookPageURL(MainActivity.this);
                facebookIntent.setData(Uri.parse(facebookUrl));
                startActivity(facebookIntent);

0

ตอบคำถามนี้ในเดือนตุลาคม 2561 รหัสการทำงานคือรหัสที่ใช้ pageID ฉันเพิ่งทดสอบและใช้งานได้

public static void openUrl(Context ctx, String url){
    Uri uri = Uri.parse(url);
    if (url.contains(("facebook"))){
        try {
            ApplicationInfo applicationInfo = ctx.getPackageManager().getApplicationInfo("com.facebook.katana", 0);
            if (applicationInfo.enabled) {
                uri = Uri.parse("fb://page/<page_id>");
                openURI(ctx, uri);
                return;
            }
        } catch (PackageManager.NameNotFoundException ignored) {
            openURI(ctx, uri);
            return;
        }
    }

0

ฉันนำมาใช้ในรูปแบบนี้ใน webview โดยใช้ชิ้นส่วน - ภายใน oncreate:

 webView.setWebViewClient(new WebViewClient()
{
    public boolean shouldOverrideUrlLoading(WebView viewx, String urlx)
                {
     if(Uri.parse(urlx).getHost().endsWith("facebook.com")) {
                        {
                            goToFacebook();
                        }
                        return false;
                    }
    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(urlx));
                    viewx.getContext().startActivity(intent);
                    return true;
                }

});

และนอกบนสร้างมุมมอง:

 private void goToFacebook() {
        try {
            String facebookUrl = getFacebookPageURL();
            Intent facebookIntent = new Intent(Intent.ACTION_VIEW);
            facebookIntent.setData(Uri.parse(facebookUrl));
            startActivity(facebookIntent);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    //facebook url load
    private String getFacebookPageURL() {
        String FACEBOOK_URL = "https://www.facebook.com/pg/XXpagenameXX/";
        String facebookurl = null;

        try {
            PackageManager packageManager = getActivity().getPackageManager();

            if (packageManager != null) {
                Intent activated = packageManager.getLaunchIntentForPackage("com.facebook.katana");

                if (activated != null) {
                    int versionCode = packageManager.getPackageInfo("com.facebook.katana", 0).versionCode;

                    if (versionCode >= 3002850) {
                        facebookurl = "fb://page/XXXXXXpage_id";
                    }
                } else {
                    facebookurl = FACEBOOK_URL;
                }
            } else {
                facebookurl = FACEBOOK_URL;
            }
        } catch (Exception e) {
            facebookurl = FACEBOOK_URL;
        }
        return facebookurl;
    }

0

เปิด fb บนปุ่มคลิกเหตุการณ์โดยไม่ต้องใช้ facebook sdk

 Intent FBIntent = new Intent(Intent.ACTION_SEND);
    FBIntent.setType("text/plain");
    FBIntent.setPackage("com.facebook.katana");
    FBIntent.putExtra(Intent.EXTRA_TEXT, "The text you wanted to share");
    try {
        context.startActivity(FBIntent);
    } catch (android.content.ActivityNotFoundException ex) {
        Toast.makeText(context, "Facebook have not been installed.", Toast.LENGTH_SHORT).show( );
    }

0
fun getOpenFacebookIntent(context: Context, url: String) {
    return try {
        context.packageManager.getPackageInfo("com.facebook.katana", 0)
        context.startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/$url/")))
    } catch (e: Exception) {
        context.startActivity(Intent(Intent.ACTION_VIEW, Uri.parse(url)))
    }
}

0

1- เพื่อรับ id ของคุณไปที่โปรไฟล์ภาพของคุณและคลิกขวาและคัดลอกลิงค์ที่อยู่

        try {
                Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("fb://profile/id"));
                startActivity(intent);
            } catch(Exception e) {
                startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("facebook url")));
            }
        }
    });

-1
try {
       String[] parts = url.split("//www.facebook.com/profile.php?id=");
       getPackageManager().getPackageInfo("com.facebook.katana", 0);
       startActivity(new Intent (Intent.ACTION_VIEW, Uri.parse(String.format("fb://page/%s", parts[1].trim()))));
    } catch (Exception e) {
       startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
    }

-2

คุณสามารถเปิดแอพ facebook ได้โดยคลิกที่ปุ่มดังต่อไปนี้: -

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    this.findViewById(R.id.button1).setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {

            startNewActivity("com.facebook.katana");
        }
    });

}

public void startNewActivity( String packageName)
{
    Intent intent = MainActivity.this.getPackageManager().getLaunchIntentForPackage(packageName);
    if (intent != null)
    {
        // we found the activity
        // now start the activity
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        startActivity(intent);
    }
    else
    {
        // bring user to the market
        // or let them choose an app?
        intent = new Intent(Intent.ACTION_VIEW);
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        intent.setData(Uri.parse("market://details?id="+packageName));
        startActivity(intent);
    }
}
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.