由于LinkedIn has no api support,我在这里发帖。 使用share api时,我们会继续收到某些令牌的错误。我们的代码没有改变,这些用户过去已经成功使用了api。
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mm"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:layout_editor_absoluteY="8dp"
tools:layout_editor_absolutex="8dp">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<TextView
android:id="@+id/highlightTV"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="@string/today_hightlight"
android:textSize="20sp"
android:layout_margin="5dp"
android:gravity="center"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>
<GridView
android:id="@+id/highlightGV"
android:layout_width="fill_parent"
android:layout_height="200dp"
android:drawSelectorOnTop="true"
android:horizontalSpacing="10dp"
android:verticalSpacing="10dp"
android:padding="5dp"
android:clipToPadding="false"
android:gravity="center"
android:numColumns="1"
android:focusable="true"
android:clickable="true"
app:layout_constraintTop_toBottomOf="@+id/highlightTV"
app:layout_constraintLeft_toLeftOf="@+id/leftGl"
app:layout_constraintRight_toRightOf="@+id/rightGl"
app:layout_constraintBottom_toBottomOf="@+id/bottomGl"/>
<TextView
android:id="@+id/topRatedTV"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="@string/top_rated"
android:textSize="20sp"
app:layout_constraintTop_toBottomOf="@+id/highlightGV"
android:layout_margin="5dp"
android:gravity="center"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>
<GridView
android:id="@+id/topRatedGV"
android:layout_width="fill_parent"
android:layout_height="720dp"
android:drawSelectorOnTop="true"
android:horizontalSpacing="10dp"
android:verticalSpacing="10dp"
android:padding="10dp"
android:clipToPadding="false"
android:gravity="center"
android:numColumns="2"
android:focusable="true"
android:clickable="true"
app:layout_constraintTop_toBottomOf="@+id/topRatedTV"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent"/>
<android.support.constraint.Guideline
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/topGl"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.015"/>
<android.support.constraint.Guideline
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/bottomGl"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.30"/>
<android.support.constraint.Guideline
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/topGl2"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.375"/>
<android.support.constraint.Guideline
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/bottomGl2"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.975"/>
<android.support.constraint.Guideline
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/leftGl"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.0225"/>
<android.support.constraint.Guideline
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/rightGl"
android:orientation="vertical"
app:layout_constraintGuide_percent="0.9775"/>
</LinearLayout>
</ScrollView>
<Button
android:id="@+id/goFoodBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/swipe_food"
android:textAllCaps="false"
android:textColor="@color/white"
android:textSize="24sp"
android:drawableLeft="@drawable/ic_fork"
android:drawableStart="@drawable/ic_fork"
android:drawableEnd="@drawable/ic_knife"
android:drawableRight="@drawable/ic_knife"
android:drawablePadding="10dp"
android:paddingLeft="25dp"
android:paddingStart="25dp"
android:paddingRight="25dp"
android:paddingEnd="25dp"
android:background="@drawable/rounded_shape3"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginBottom="20dp"
android:layout_marginLeft="20dp"
android:layout_marginStart="20dp"
android:layout_marginRight="20dp"
android:layout_marginEnd="20dp"
android:stateListAnimator="@null"/>
<!--Buttons in Lollipop and higher have a default elevation to them
which causes them to always draw on top.
You can change this by overriding the default StateListAnimator.-->
<FrameLayout
android:id="@+id/findFoodFL"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent">
</FrameLayout>
</android.support.constraint.ConstraintLayout>
<android.support.design.widget.NavigationView
android:id="@+id/nvView"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="end"
android:background="@android:color/white"
app:menu="@menu/drawer_view" />
</android.support.v4.widget.DrawerLayout>
我们如何获得有关此错误的更多信息/详细信息?
更新
我能够在Your Cases使用案例从LinkedIn获得一般性回复。他们说他们会转到api团队。至少确认了一个问题。
感谢您与LinkedIn联系,希望这封电子邮件找到您。
道格拉斯,事实上,你遇到了一个已知的问题。对此给您带来的不便,我感到非常抱歉。我们的工程团队正在研究它,但是没有估计可能需要多长时间。我们会尽力让您发布。与此同时,如果您有任何其他问题,我将很乐意为您提供帮助!
道格拉斯,很抱歉,我们没有自动功能来提醒会员有关此类问题。但我已将此作为反馈发送给我们的产品团队实施。 同时,您可以参考https://developer.linkedin.com/与他们联系。您还可以通过将光标移到“配置文件”页面底部的“关于并选择开发人员”来访问开发人员网站。