首页 \ 问答 \ 2013年6月13日之后的Facebook SDK 2.0和Android(Facebook SDK 2.0 and Android after June 13, 2013)

2013年6月13日之后的Facebook SDK 2.0和Android(Facebook SDK 2.0 and Android after June 13, 2013)

根据https://developers.facebook.com/blog/post/2012/12/13/facebook-sdk-3-0-for-android-and-native-login/在Android上支持SDK 2.0将于6月13日结束/ 2013。

我相信这意味着Facebook将不再为SDK 2.0提供软件更新/错误修复,但使用Facebook SDK 2.0的应用仍将继续正常运行。

它是否正确?


Per https://developers.facebook.com/blog/post/2012/12/13/facebook-sdk-3-0-for-android-and-native-login/ support for SDK 2.0 on Android will end 6/13/2013.

I believe this means Facebook will no longer provide software updates/bug fixes for SDK 2.0 BUT apps using Facebook SDK 2.0 will still continue to function properly.

Is this correct?


原文:https://stackoverflow.com/questions/16982667
更新时间:2022-09-18 20:09

最满意答案

从名称中获取顶点ID:

> which(V(g)$name == "C")
[1] 3

从边缘的端点获取边缘ID:

> get.edge.ids(g, c("B", "C"))
[1] 2

Getting the vertex ID from its name:

> which(V(g)$name == "C")
[1] 3

Getting the edge ID from the endpoints of an edge:

> get.edge.ids(g, c("B", "C"))
[1] 2

相关问答

更多
  • get.edges()返回所有边, get.edge()返回一个边。 如果需要遍历所有边,则调用get.edges()并遍历两列矩阵的所有行,并使用apply()或for循环。 get.edges() returns all edges, get.edge() returns one edge. If you need to iterate over all edges, then call get.edges() and go over all lines of the two-column matrix ...
  • 您可以使用order来排序并找出前3个最大聚类的成员资格,并使用%in%来检查顶点是否在其中一个内: which(c$membership %in% order(c$csize, decreasing = TRUE)[1:3]) order(c$csize, decreasing = TRUE)给出索引(对应于集群id),它将按降序排序size ; c$membership包含所有顶点的集群ID; 使用%in%来检查集群ID是否在前三位; You can use order to sort and fin ...
  • 以下是我的同事Benjamin Lind提供的解决方案: all_files <- list.files("./edgelists") # reading file names datanames <- strsplit(all_files, split = "\\.") # removing file extension datanames <- sapply(datanames, "[[", 1) # getting names of egos # Helper function to load da ...
  • 从名称中获取顶点ID: > which(V(g)$name == "C") [1] 3 从边缘的端点获取边缘ID: > get.edge.ids(g, c("B", "C")) [1] 2 Getting the vertex ID from its name: > which(V(g)$name == "C") [1] 3 Getting the edge ID from the endpoints of an edge: > get.edge.ids(g, c("B", "C")) [1] 2
  • 使用permute.vertices()来置换顶点的ID。 请注意,顶点ID始终是1和| V |之间的整数 在R中(其中| V |是顶点的数量)。 Use permute.vertices() to permute the IDs of the vertices. Note that the vertex IDs are always integers between 1 and |V| in R (where |V| is the number of vertices).
  • 在R igraph read.igraph帮助文件中很好地记录了各种支持格式的优缺点: http : read.igraph 。 write.igraph页面显示支持更多类型的输出 Edge List太简单,无法满足您的需求 Pajek可能过于特定于域,并且对GraphML有一些类似的限制 Dot可能能够满足您的需求(参考: http : //www.graphviz.org/Documentation/dotguide.pdf ) GraphML不会处理超图,嵌套图或混合(有向/无向)图。 GML说“只使 ...
  • Re a):Pajek格式不支持任意属性,只有少数专用属性; 有关更多详细信息,请参阅igraph_read_graph_pajek的文档。 重新b):您收到的消息不是错误消息,而只是警告。 随意忽略它 - 图表可能加载得很好。 Re a): the Pajek format does not support arbitrary attributes, only a few dedicated ones; see the documentation of igraph_read_graph_pajek fo ...
  • 如果将一个数字作为顶点id传递给induced.subgraph函数,它将按编号访问顶点(在图形编号1到23中),由于26,29之类的索引导致“无效顶点ID”错误你希望实际按名称引用顶点,你可以通过传递一个字符串而不是一个数字来实现: for (i in 1:length(cycles)){ vids <- as.character(unlist(cycles[[i]])) subgraph<- induced.subgraph(graph, vids) plot(subgraph) } 现在 ...
  • 你可以看到我的问题和答案 。 我只为每个igraph对象添加了一个新属性。 然后将图形与union()函数联合,并恢复属性的原始值。 You can see my question and answer. I have added one new attribute to each igraph object only. Then graphs were unioned with the union() function and original values of attribute were resto ...
  • 要在karate示例中为每个顶点添加自循环,只需这样做 karate[from=V(karate), to=V(karate)] <- 1 这会给你 To add a self-loop for each vertex in the karate example, just do karate[from=V(karate), to=V(karate)] <- 1 This will give you

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)